Update Queryable.WhereClass

This commit is contained in:
sunkaixuan 2022-03-13 11:42:11 +08:00
parent 5eb1a61f4c
commit 48d093a191
2 changed files with 24 additions and 0 deletions

View File

@ -53,6 +53,12 @@ namespace OrmTest
type2 = UnitType.b
})
.Where(it => true).ExecuteCommand();
db.Queryable<Unit00Z1string1>().WhereClass(new Unit00Z1string1()
{
type = UnitType.a,
type2 = UnitType.b
}).ToList();
}
private static void Int()
{
@ -74,6 +80,12 @@ namespace OrmTest
}
Db.Updateable<Unit00Z11C12>(x3).WhereColumns(it => it.type).ExecuteCommand();
var x4 = Db.Queryable<Unit00Z11C12>().ToList();
Db.Queryable<Unit00Z11C12>().WhereClass(new Unit00Z11C12() {
type= UnitType.a,
type2=UnitType.b
}).ToList();
}
public class Unit00Z11C12

View File

@ -485,6 +485,18 @@ namespace SqlSugar
FieldName = column.DbColumnName,
FieldValue = value.ObjToString()
});
if (value != null && value.GetType().IsEnum())
{
if (this.Context.CurrentConnectionConfig?.MoreSettings?.TableEnumIsString == true)
{
}
else
{
data.Value.FieldValue = Convert.ToInt64(value).ObjToString();
}
}
cons.ConditionalList.Add(data);
if (this.Context.CurrentConnectionConfig.DbType == DbType.PostgreSQL)
{