How to build a nested query with the dynamic LINQ

2019-02-18 09:52发布

How can I build the following LINQ query with the Dynamic Linq library (System.Linq.Dynamic)?

var roles = rolesCollection.Where(r => r.AssignedUsers.Where(u => u.Name.FirstName == "Patrick").Count() > 0);

rolesCollection and AssignedUsers are collections which implement the IEnumerable interface.

I was thinking about doing something like this:

rolesCollection.Where("AssignedUsers.Where(\"Name.FirstName == 'Patrick'\").Count() > 0");

But that doesn't work. A ParseException with the message "No applicable aggregate method 'Where' exists" is thrown.

Thanks in advance.

1条回答
叼着烟拽天下
2楼-- · 2019-02-18 10:31

Try this:

rolesCollection
    .Where("AssignedUsers.Where(Name.FirstName == \"Patrick\").Any()");

or

var userName = "Patrick";
rolesCollection
    .Where("AssignedUsers.Where(Name.FirstName == @0).Any()", userName);
查看更多
登录 后发表回答