Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. public class ApplicationSystemUser
  2.     {
  3.         public int ApplicationId { get; set; }
  4.         public Application Application { get; set; }
  5.  
  6.         public int SystemUserId { get; set; }
  7.         public SystemUser SystemUser { get; set; }
  8.  
  9.     }
  10.    
  11.   var query = context.Applications.AsQueryable().Include(x => x.ApplicationSystemUsers.Select(y => y.SystemUser));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement