我有各种各样的车辆清单。
public IList<Vehicle> GetAllByCat(int compId, short catId)
{
var _vehicles = Context.Vehicle
.Where(i =>
i.CompanyId == compId &&
i.VehicleCategories.Any(o => o.VehicleCategoryId == catId))
.ToList();
return _vehicles;
}
但是它返回空值(并且我在调试中看到_vehicles
在当前上下文中不存在的文本)
我已经广泛搜索了答案,但没有找到任何有用的答案。 有想法吗?