This commit is contained in:
sunkaixuan
2022-08-03 16:00:44 +08:00
parent 4c38a7a375
commit 3945e61aea
2 changed files with 9 additions and 16 deletions

View File

@@ -82,10 +82,10 @@ namespace SqlSugar
var value = ValueConverter(column, PropertyCallAdapterProvider<T>.GetInstance(column.PropertyName).InvokeGet(item)); var value = ValueConverter(column, PropertyCallAdapterProvider<T>.GetInstance(column.PropertyName).InvokeGet(item));
if (isMySql && column.UnderType == UtilConstants.BoolType) if (isMySql && column.UnderType == UtilConstants.BoolType)
{ {
//if (value.ObjToBool() == false) if (value.ObjToBool() == false)
//{ {
// value = DBNull.Value; value = DBNull.Value;
//} }
} }
else if (isSqliteCore&&column.UnderType == UtilConstants.StringType && value is bool) else if (isSqliteCore&&column.UnderType == UtilConstants.StringType && value is bool)
{ {
@@ -180,10 +180,10 @@ namespace SqlSugar
} }
if (column.DataType==UtilConstants.BoolType&&this.context.CurrentConnectionConfig.DbType.IsIn(DbType.MySql, DbType.MySqlConnector)) if (column.DataType==UtilConstants.BoolType&&this.context.CurrentConnectionConfig.DbType.IsIn(DbType.MySql, DbType.MySqlConnector))
{ {
//if (Convert.ToBoolean(dr[column.ColumnName]) == false) if (Convert.ToBoolean(dr[column.ColumnName]) == false)
//{ {
// dr[column.ColumnName] = DBNull.Value; dr[column.ColumnName] = DBNull.Value;
//} }
} }
} }
tempDataTable.Rows.Add(dr); tempDataTable.Rows.Add(dr);

View File

@@ -170,14 +170,7 @@ namespace SqlSugar
} }
else if (colum.DataType == typeof(bool)) else if (colum.DataType == typeof(bool))
{ {
if (row[colum]==null||row[colum] == DBNull.Value) sb.Append(row[colum].ObjToBool() ? 1 : 0);
{
sb.Append("NULL");
}
else
{
sb.Append(row[colum].ObjToBool() ? 1 : 0);
}
} }
else if (colum.DataType == UtilConstants.DateType&& row[colum] != null && row[colum] != DBNull.Value) else if (colum.DataType == UtilConstants.DateType&& row[colum] != null && row[colum] != DBNull.Value)
{ {