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.
14 lines
552 B
14 lines
552 B
namespace SqlSugar
|
|
{
|
|
internal class ExpressionConst
|
|
{
|
|
public const string Const = "Const";
|
|
public const string FormatSymbol = "{0}";
|
|
public const string RightParenthesis = ")";
|
|
public const string LeftParenthesis = "(";
|
|
public const string MethodConst = "MethodConst";
|
|
public const string SqlFuncFullName = "SqlSugar.SqlFunc";
|
|
public const string BinaryFormatString = " ( {0} {1} {2} ) ";
|
|
public const string ExpressionReplace = "46450BDC-77B7-4025-B2A6-3F048CA85AD0";
|
|
}
|
|
}
|