Sqlite DateTimeOffset BUG

This commit is contained in:
sunkaixuan 2022-10-27 00:36:25 +08:00
parent 7213ee5b7c
commit 91d701de23

View File

@ -247,6 +247,10 @@ namespace SqlSugar
{
method = isNullableType ? getConvertInt32 : getInt32;
}
else if (bindPropertyType == UtilConstants.DateTimeOffsetType)
{
method = isNullableType ? getConvertdatetimeoffset : getdatetimeoffset;
}
else if (bindPropertyType == UtilConstants.ByteType)
{
method = isNullableType ? getConvertByte : getByte;