Update Nuget

This commit is contained in:
skx
2020-12-30 01:15:27 +08:00
parent 29870cea1f
commit 5e889c2bbb
6 changed files with 12 additions and 7 deletions

View File

@@ -2,7 +2,7 @@
<package > <package >
<metadata> <metadata>
<id>SqlSugar</id> <id>SqlSugar</id>
<version>5.0.1.7</version> <version>5.0.1.8</version>
<title>SqlSugar 5.0+ 使用 .Net Framework 4.5+ , SqlSugar 4.0+ 使用 .Net Framework 4.0</title> <title>SqlSugar 5.0+ 使用 .Net Framework 4.5+ , SqlSugar 4.0+ 使用 .Net Framework 4.0</title>
<authors>sun kaixuan</authors> <authors>sun kaixuan</authors>
<owners>landa</owners> <owners>landa</owners>

View File

@@ -71,6 +71,11 @@ namespace SqlSugar
{ {
inValues.Add(Convert.ToInt64(item)); inValues.Add(Convert.ToInt64(item));
} }
else if (item != null && item.GetType()==UtilConstants.ByteArrayType)
{
var inStr= BitConverter.ToString((byte[])item).Replace("-", "");
inValues.Add(inStr);
}
else else
{ {
inValues.Add(item); inValues.Add(item);

View File

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

View File

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

View File

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

View File

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