Garbled BUG

This commit is contained in:
sunkaixuan
2017-09-02 11:54:56 +08:00
parent e86356b6a3
commit 5e8fab860d

View File

@@ -71,6 +71,11 @@ namespace SqlSugar
{ {
this.DbType = System.Data.DbType.Boolean; this.DbType = System.Data.DbType.Boolean;
} }
else if (type == UtilConstants.StringType)
{
this.DbType = System.Data.DbType.String;
}
} }
public SugarParameter(string name, object value, bool isOutput) public SugarParameter(string name, object value, bool isOutput)
{ {