This commit is contained in:
sunkaixuan 2023-04-12 13:28:44 +08:00
parent 033501bf6b
commit c8f81f0b1f

View File

@ -53,6 +53,7 @@ namespace OrmTest
y.Name
}).Any()
}).ToList();
db.Queryable<Order>().Where(it => getByWhere.Any(s => s.Id == it.Id && s.Name == it.Name)).ToList();
Console.WriteLine("#### Examples End ####");
}