我已在Product.Id
内选择了List<Guid> cartList
(guids)。我正试图通过Entity Framework将所有匹配的产品与lambda表达式结合起来。
List<Product> getProducts = db.Products.Where(x=> x.Id == /*that contains any ids in cartList*/)
知道如何使这项工作吗?
答案 0 :(得分:3)
试试这个:
List<Product> getProducts = db.Products.Where(x=> cartList.Contains(x.Id)).ToList()