Browse Source

MYSQL BIT BUG

pull/12/MERGE
sunkaixuan 7 years ago
parent
commit
5caad95f13
  1. 4
      Src/Asp.Net/SqlSugar/ExpressionsToSql/Common/SugarParameter.cs
  2. 4
      Src/Asp.Net/SqlSugar/Properties/AssemblyInfo.cs
  3. 4
      Src/Asp.NetCore/SqlServerTest/src/SqlSugar/SqlSugarForCore.nuspec

4
Src/Asp.Net/SqlSugar/ExpressionsToSql/Common/SugarParameter.cs

@ -67,6 +67,10 @@ namespace SqlSugar
{
this.DbType = System.Data.DbType.Single;
}
else if (type == PubConst.BoolType)
{
this.DbType = System.Data.DbType.Boolean;
}
}
public SugarParameter(string name, object value, bool isOutput)
{

4
Src/Asp.Net/SqlSugar/Properties/AssemblyInfo.cs

@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.1.1.1")]
[assembly: AssemblyFileVersion("4.1.1.1")]
[assembly: AssemblyVersion("4.1.1.2")]
[assembly: AssemblyFileVersion("4.1.1.2")]

4
Src/Asp.NetCore/SqlServerTest/src/SqlSugar/SqlSugarForCore.nuspec

@ -2,7 +2,7 @@
<package >
<metadata>
<id>sqlSugarCore</id>
<version>4.1.1.1</version>
<version>4.1.1.2</version>
<authors>sunkaixuan</authors>
<owners>Landa</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
@ -25,6 +25,6 @@
</dependencies>
</metadata>
<files>
<file src="F:\MyOpenSource\SqlSugar4.XNew\SqlSugar\Src\Asp.NetCore\SqlServerTest\src\SqlSugar\bin\Debug\netstandard1.6\SqlSugar.dll" target="lib\netstandard1.6"></file>
<file src="D:\MyGit\SqlSugar\Src\Asp.NetCore\SqlServerTest\src\SqlSugar\bin\Debug\netstandard1.6\SqlSugar.dll" target="lib\netstandard1.6"></file>
</files>
</package>
Loading…
Cancel
Save