S
shapper
Hello,
I have the following list:
IList<Int32> roles = { 1, 2, 3 }
I need to get all users where in user.Roles there is at least one Role
which is id 1, 2 OR 3.
var a = users.Where(u => u.Roles. ??? );
How can I do this?
Thanks,
Miguel
I have the following list:
IList<Int32> roles = { 1, 2, 3 }
I need to get all users where in user.Roles there is at least one Role
which is id 1, 2 OR 3.
var a = users.Where(u => u.Roles. ??? );
How can I do this?
Thanks,
Miguel