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.

38 lines
627 B

2 years ago
  1. using System.Linq.Expressions;
  2. namespace SqlSugar
  3. {
  4. public class SubRightBracket : 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. {
  18. return "RightBracket";
  19. }
  20. }
  21. public int Sort
  22. {
  23. get
  24. {
  25. return 500;
  26. }
  27. }
  28. public string GetValue(Expression expression)
  29. {
  30. return ")";
  31. }
  32. }
  33. }