diff --git a/Src/Asp.Net/SqlSugar/ExpressionsToSql/Common/ExpressionConst.cs b/Src/Asp.Net/SqlSugar/ExpressionsToSql/Common/ExpressionConst.cs index 6420df23e..89f6a0d72 100644 --- a/Src/Asp.Net/SqlSugar/ExpressionsToSql/Common/ExpressionConst.cs +++ b/Src/Asp.Net/SqlSugar/ExpressionsToSql/Common/ExpressionConst.cs @@ -7,16 +7,13 @@ namespace SqlSugar { internal class ExpressionConst { - public const string BinaryFormatString = " ( {0} {1} {2} ) "; + public const string Format4 = ")"; + public const string Format3 = "("; public const string Format0 = "{0}"; public const string Format1 = "$__$"; - public const string Format2 = "o__o"; - public const string Format3 = "("; - public const string Format4 = ")"; - public const string SqlFuncFullName = "SqlSugar.SqlFunc"; - public const string MethodConst = "MethodConst"; public const string Const = "Const"; - public readonly static Type MemberExpressionType = typeof(MemberExpression); - public readonly static Type ConstantExpressionType = typeof(ConstantExpression); + public const string MethodConst = "MethodConst"; + public const string SqlFuncFullName = "SqlSugar.SqlFunc"; + public const string BinaryFormatString = " ( {0} {1} {2} ) "; } }