Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. IList<GameViewModel> games = (from game in dbGames
  2. select new GameViewModel()
  3. {
  4. Title = game.Title,
  5. // ...
  6. }
  7. ).ToList();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement