Using linq, how can I retrieve a list of items where it's list of attributes match another list?
Take this example simple example and psuedo code:
string List listofGenres = new List() { "action", comdedy" });
var movies = _db.Movies.Where(p => p.Genres.Any() in listofGenres);