mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 01:58:13 +08:00
Synchronization code
This commit is contained in:
@@ -176,7 +176,7 @@ namespace SqlSugar
|
||||
{
|
||||
sb.Append(row[colum].ObjToDate().ToString("yyyy-MM-dd HH:mm:ss.fff"));
|
||||
}
|
||||
else if (colum.DataType == UtilConstants.DateType && row[colum] != null && row[colum] == DBNull.Value)
|
||||
else if (row[colum] == null || row[colum] == DBNull.Value)
|
||||
{
|
||||
sb.Append("NULL");
|
||||
}
|
||||
|
Reference in New Issue
Block a user