I have a problem. I want to use a LINQ query against this database:

A user can have many roles, and each role can have many items. If I had a username, I want to be able to find all the items associated with it. Which means I need to first find what roles that user has and then what items each of those roles has.
How do I go about this?
1 Answer