This commit is contained in:
sunkaixuan 2023-10-11 19:04:27 +08:00
parent 692805ce92
commit 7e6566954f

View File

@ -65,6 +65,8 @@ namespace OrmTest
names = $"as{it.Id}fd{it.Id}a"
})
.ToList();
var test09 = db.Queryable<Order>().Where(it => string.IsNullOrEmpty(it.Name) == true)
.ToList();
Console.WriteLine("#### Examples End ####");
Console.WriteLine("#### Examples End ####");
}