ISubOperation.cs 422 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Linq.Expressions;
  5. using System.Text;
  6. namespace SqlSugar
  7. {
  8. public interface ISubOperation
  9. {
  10. ExpressionContext Context { get; set; }
  11. string Name { get; }
  12. string GetValue(Expression expression);
  13. int Sort { get; }
  14. Expression Expression { get; set; }
  15. bool HasWhere { get; set; }
  16. }
  17. }