Advertisement
TankorSmash

Untitled

Jan 12th, 2013
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. var res = (from movie in db.Movies
  2. from mtg in db.MovieToGenres
  3. from boxart in db.BoxArts
  4. from omdb in db.Omdb
  5.  
  6. select
  7. new NfImdbRtViewModel
  8. {
  9. Boxarts = boxart,
  10. Movie = movie,
  11. OmdbEntry = omdb
  12. }
  13. ).ToList();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement