Add test demo

This commit is contained in:
sunkaixuan
2022-07-06 05:04:52 +08:00
parent 96f58fba8c
commit feffff0fe1
2 changed files with 6 additions and 0 deletions

View File

@@ -166,6 +166,9 @@ namespace OrmTest
var test44=db.Queryable<Order>().WhereColumns(new List<Dictionary<string, object>>() {
whereDc
}).ToList();
var test45 = db.Queryable<Order>().
Where(it=>it.Price==0?true:it.Name==it.Name)
.ToList();
Console.WriteLine("#### Examples End ####");
}