You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
300 B

2 years ago
  1. using System.Linq.Expressions;
  2. namespace SqlSugar
  3. {
  4. public interface ISubOperation
  5. {
  6. ExpressionContext Context { get; set; }
  7. string Name { get; }
  8. string GetValue(Expression expression);
  9. int Sort { get; }
  10. Expression Expression { get; set; }
  11. }
  12. }