mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-18 17:48:11 +08:00
vat code
This commit is contained in:
@@ -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);
|
||||||
|
@@ -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)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user