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 >
<metadata>
<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>
<authors>sun kaixuan</authors>
<owners>landa</owners>

View File

@@ -71,6 +71,11 @@ namespace SqlSugar
{
inValues.Add(Convert.ToInt64(item));
}
else if (item != null && item.GetType()==UtilConstants.ByteArrayType)
{
var inStr= BitConverter.ToString((byte[])item).Replace("-", "");
inValues.Add(inStr);
}
else
{
inValues.Add(item);
@@ -80,8 +85,8 @@ namespace SqlSugar
var value = model.Args[1].MemberName;
string inValueString = null;
if (inValues != null && inValues.Count > 0)
{
inValueString = inValues.ToArray().ToJoinSqlInVals();
{
inValueString = inValues.ToArray().ToJoinSqlInVals();
}
if (inValueString.IsNullOrEmpty())
{

View File

@@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>5.0.1.7</Version>
<Version>5.0.1.8</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.1.7</version>
<version>5.0.1.8</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>SqlSugarCore.MySqlConnector</id>
<version>5.0.1.7</version>
<version>5.0.1.8</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.1.7</version>
<version>5.0.1.8</version>
<authors>sunkaixuan</authors>
<owners>Landa</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>