我正在尝试编写一个查询,从我加入的数据中获取国家/地区列表。
Places
为List<Country>
。
var zonedCountries = (from dz in db.DeliveryZones.Include(d => d.Places)
where model.DeliveryZones.Contains(dz.ID)
select dz.Places);
我希望zonedCountries
成为一个列表,而不是IQueryable<ICollection<Country>>
。
如何从中提取列表?
答案 0 :(得分:10)
如果您想获得扁平的国家/地区列表:
var zonedCountries = (from dz in db.DeliveryZones.Include(d => d.Places)
where model.DeliveryZones.Contains(dz.ID)
from p in dz.Places
select p);
或使用SelectMany
:
var zonedCountries = db.DeliveryZones.Include(d => d.Places)
.Where(dz => model.DeliveryZones.Contains(dz.ID))
.SelectMany(dz => dz.Places);
BTW我不确定在这种情况下是否需要手动包含场所(因此您选择的是场所而不是交付区域)。您可能只想选择不同的国家/地区 - Distinct()
会在这里为您提供帮助。此外,如果您想将结果存储在列表中,那么简单的ToList()
调用将完成这项工作。