mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Update .net framework project
This commit is contained in:
parent
47a6ed54b1
commit
c8d2aa1546
@ -91,6 +91,10 @@ namespace SqlSugar
|
||||
{
|
||||
value = "isSqliteCore_"+value.ObjToString();
|
||||
}
|
||||
else if (isSqliteCore && column.UnderType == UtilConstants.BoolType && value is bool)
|
||||
{
|
||||
value =Convert.ToBoolean(value)?1:0;
|
||||
}
|
||||
else if (column.UnderType == UtilConstants.DateTimeOffsetType && value != null && value != DBNull.Value)
|
||||
{
|
||||
if (builder.DbFastestProperties != null && builder.DbFastestProperties.HasOffsetTime == true)
|
||||
|
Loading…
Reference in New Issue
Block a user