SubLeftBracket.cs 782 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 class SubLeftBracket : ISubOperation
  9. {
  10. public bool HasWhere
  11. {
  12. get; set;
  13. }
  14. public ExpressionContext Context
  15. {
  16. get;set;
  17. }
  18. public Expression Expression
  19. {
  20. get;set;
  21. }
  22. public string Name
  23. {
  24. get
  25. {
  26. return "LeftBracket";
  27. }
  28. }
  29. public int Sort
  30. {
  31. get
  32. {
  33. return 50;
  34. }
  35. }
  36. public string GetValue(Expression expression)
  37. {
  38. return "(";
  39. }
  40. }
  41. }