在我的存储库实现中,我可以使用lambda表达式运行以下查询:
public IList<User> GetUsersFromCountry(string)
{
return _UserRepository.Where(x => x.Country == "Sweden").ToList();
}
到目前为止,这么好,简单的东西。但是,我在编写针对嵌套的lambda表达式时遇到困难 - &gt;嵌套列表。鉴于以下示例(抱歉无法想到更好的一个):
以下查询绝对正常,并返回所有俱乐部,其成员年龄超过45岁
public IList<Clubs> GetGoldMembers()
{
var clubs = from c in ClubRepository
from m in c.Memberships
where m.User.Age > 45
select c;
return clubs;
}
目前,这是我对lambda表达的了解的结束。
如何使用lambda表达式针对ClubRepository编写上述查询,类似于上面的示例?
答案 0 :(得分:26)
这可能有用(未经测试)......
var clubs = ClubRepository.Where(c=>c.MemberShips.Any(m=>m.User.Age > 45));
答案 1 :(得分:16)
这是一种方法:
var clubs = clubRepository
.SelectMany(c => c.Memberships, (c, m) => new { c, m })
.Where(x => x.m.User.Age > 45)
.Select(x => x.c);
答案 2 :(得分:0)
更通用的方式
List<T> list= new List<T>();
list= object1.NestedList1.SelectMany(x => x.NestedList2).ToList();
其中 NestedList2 匹配“列表”的数据类型