mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-02-26 21:53:04 +08:00
Naming optimization
This commit is contained in:
@@ -33,7 +33,7 @@ namespace SqlSugar
|
||||
mainIndex++;
|
||||
continue;
|
||||
}
|
||||
else if (item.FieldName == UtilMethods.FiledNameSql())
|
||||
else if (item.FieldName == UtilMethods.FieldNameSql())
|
||||
{
|
||||
builder.Append(item.FieldValue);
|
||||
continue;
|
||||
|
||||
@@ -1519,10 +1519,15 @@ namespace SqlSugar
|
||||
}
|
||||
}
|
||||
|
||||
[Obsolete("请使用新名字:FieldNameSql")]
|
||||
public static string FiledNameSql()
|
||||
{
|
||||
return $"[value=sql{UtilConstants.ReplaceKey}]";
|
||||
}
|
||||
public static string FieldNameSql()
|
||||
{
|
||||
return $"[value=sql{UtilConstants.ReplaceKey}]";
|
||||
}
|
||||
|
||||
internal static object TimeOnlyToTimeSpan(object value)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user