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.

37 lines
617 B

2 years ago
  1. using System.Linq.Expressions;
  2. namespace SqlSugar
  3. {
  4. public class SubSelectDefault : ISubOperation
  5. {
  6. public ExpressionContext Context
  7. {
  8. get;set;
  9. }
  10. public Expression Expression
  11. {
  12. get;set;
  13. }
  14. public string Name
  15. {
  16. get {
  17. return "SelectDefault";
  18. }
  19. }
  20. public int Sort
  21. {
  22. get
  23. {
  24. return 250;
  25. }
  26. }
  27. public string GetValue(Expression expression)
  28. {
  29. return "*";
  30. }
  31. }
  32. }