如果我要使用以下代码将产品选择到类名称 Products 中,我将如何添加 Where 子句 enabled=true 而不将其添加到类 Products 中?
List<Products> lp = db.products.Select(product => new Products
{
Name = product.name,
Description = product.description,
Category = product.Category
}).ToList();
添加.Where(x => x.enabled==true)不起作用,因为enabled不是 Products 类的一部分,只是products表的一部分。