mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Synchronization code
This commit is contained in:
parent
e66d53273b
commit
d92ef16298
@ -2210,8 +2210,9 @@ namespace SqlSugar
|
||||
};
|
||||
var value = UtilMethods.GetSqlString(config.DbType, "@p", p, true);
|
||||
sql = sql.Replace(re.Name, value);
|
||||
sql = SqlBuilder.RemoveParentheses(sql);
|
||||
|
||||
}
|
||||
sql = SqlBuilder.RemoveParentheses(sql);
|
||||
sql = sql.Replace("@sugarIndex", index + "");
|
||||
sqls.Add(sql);
|
||||
|
||||
|
@ -1384,6 +1384,10 @@ namespace SqlSugar
|
||||
{
|
||||
result = result.Replace(item.ParameterName, item.Value.ObjToString());
|
||||
}
|
||||
else if (item.Value is DateTime&&connectionConfig.DbType==DbType.SqlServer)
|
||||
{
|
||||
result = result.Replace(item.ParameterName, "CAST('" + item.Value.ObjToDate().ToString("yyyy-MM-dd HH:mm:ss.fff") + "' AS DATETIME)");
|
||||
}
|
||||
else if (item.Value is DateTime)
|
||||
{
|
||||
result = result.Replace(item.ParameterName, "'"+item.Value.ObjToDate().ToString("yyyy-MM-dd HH:mm:ss.fff")+"'");
|
||||
|
Loading…
Reference in New Issue
Block a user