MYSQL BIT BUG

This commit is contained in:
sunkaixuan
2017-07-06 15:30:44 +08:00
parent a34fb79bd1
commit 5caad95f13
3 changed files with 8 additions and 4 deletions

View File

@@ -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)
{

View File

@@ -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")]