Advertisement
Ortund

Untitled

Apr 23rd, 2014
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. private imajEntities ie = new imajEntities();
  2.  
  3. public User()
  4. {
  5.  
  6. }
  7.  
  8. public List<user> GetUsersWithStores()
  9. {
  10.     return (from u in ie.users
  11.     join s in ie.stores on u.storeid equals s.storeid into usersandstores
  12.     select usersandstores).ToList();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement