## v0.11.8

This commit is contained in:
28810
2019-11-07 00:17:11 +08:00
parent 35a663f5ef
commit 13810c4422
15 changed files with 21 additions and 147 deletions

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;net40</TargetFrameworks>
<Version>0.11.7</Version>
<Version>0.11.8</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>YeXiangQin</Authors>
<Description>FreeSql 数据库实现,基于 Sqlite 3.0</Description>

View File

@ -169,7 +169,7 @@ namespace FreeSql.Sqlite
{
column = string.Concat(a[1]),
sqlType = string.Concat(a[2]).ToUpper(),
is_nullable = string.Concat(a[3]) == "0",
is_nullable = string.Concat(a[5]) == "0" && string.Concat(a[3]) == "0",
is_identity
};
}, StringComparer.CurrentCultureIgnoreCase);