This commit is contained in:
sunkaixuan 2022-03-11 14:26:11 +08:00
parent 52a56815b5
commit fc5f5f3f58
4 changed files with 11 additions and 3 deletions

View File

@ -128,6 +128,14 @@ namespace SqlSugar
return Convert.ToInt64(value);
}
}
else if (type == UtilConstants.LongType)
{
return GetString(value);
}
else if (type == UtilConstants.IntType)
{
return GetString(value);
}
else if (type == UtilConstants.BoolType)
{
return value.ObjToBool() ? "1" : "0";

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Version>5.0.5.8</Version>
<Version>5.0.5.9</Version>
<Copyright>sun_kai_xuan</Copyright>
<PackageProjectUrl>https://github.com/sunkaixuan/SqlSugar</PackageProjectUrl>
<PackageLicenseUrl></PackageLicenseUrl>

View File

@ -2,7 +2,7 @@
<package >
<metadata>
<id>SqlSugarCore</id>
<version>5.0.5.8</version>
<version>5.0.5.9</version>
<authors>sunkaixuan</authors>
<owners>Landa</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>

View File

@ -2,7 +2,7 @@
<package >
<metadata>
<id>SqlSugarCoreNoDrive</id>
<version>5.0.5.8</version>
<version>5.0.5.9</version>
<authors>sunkaixuan</authors>
<owners>Landa</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>