13 lines
300 B

3 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. }