ExpressionConst.cs 669 B

12345678910111213141516171819
  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. internal class ExpressionConst
  9. {
  10. public const string Const = "Const";
  11. public const string FormatSymbol = "{0}";
  12. public const string RightParenthesis = ")";
  13. public const string LeftParenthesis = "(";
  14. public const string MethodConst = "MethodConst";
  15. public const string SqlFuncFullName = "SqlSugar.SqlFunc";
  16. public const string BinaryFormatString = " ( {0} {1} {2} ) ";
  17. public const string ExpressionReplace = "46450BDC-77B7-4025-B2A6-3F048CA85AD0";
  18. }
  19. }