只是一个免责声明,这可能已经被问过了,但我真的不知道要搜索什么。
所以基本上我有以下模型:
public class Car
{
public int Id { get; set; }
public string UniqueName { get; set; }
public List<Feature> Features { get; set; }
}
public class Feature
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
}
假设我想买一辆等于 的汽车,但价格低于 100 美元。UniqueNameBentleFeatures
我可以做这样的事情:
var car = DbContext.Cars.FirstOrDefault(x=> x.UniqueName == "Bentle");
car.Features = car.Features.Where(x=> x.Price <= 100).ToList();
这确实有效,但在我看来,这是很多不必要的转换。有什么方法可以缩短此查询?
我需要实体本身Car
仅包含成本低于 100 美元的列表Features
Features
慕勒3428872
相关分类