PgSql enum bug

This commit is contained in:
sunkaixuan
2019-04-28 17:03:25 +08:00
parent b7935e8a3c
commit 3973e060bd

View File

@@ -129,6 +129,10 @@ namespace SqlSugar
if (this.Value != null)
this.Value = this.Value.ToString();
}
else if (type.IsEnum())
{
this.DbType = System.Data.DbType.Int64;
}
}
public SugarParameter(string name, object value, bool isOutput)