Updaate 达梦

This commit is contained in:
sunkaixuan 2023-08-11 18:16:11 +08:00
parent c12a3530a3
commit 183c4681a3
2 changed files with 10 additions and 1 deletions

View File

@ -37,7 +37,11 @@ namespace SqlSugar
public override string SqlTemplateBatch => "INSERT INTO {0} ({1})";
public override string SqlTemplateBatchSelect => " {0} ";
public override string FormatDateTimeOffset(object value)
{
var date = UtilMethods.ConvertFromDateTimeOffset((DateTimeOffset)value);
return "'" + date.ToString("yyyy-MM-dd HH:mm:ss.fff zzz") + "'";
}
public override string ToSqlString()
{
return base.ToSqlString();

View File

@ -65,6 +65,11 @@ namespace SqlSugar
}
}
}
public override string FormatDateTimeOffset(object value)
{
var date = UtilMethods.ConvertFromDateTimeOffset((DateTimeOffset)value);
return "'" + date.ToString("yyyy-MM-dd HH:mm:ss.fff zzz") + "'";
}
public object FormatValue(int i, string name, object value)
{
if (value == null)