namespace LaDOSE.Entity { /// /// The applicationuserrole join table. Declared explicitly rather than left /// implicit so its columns match the table that already exists in the database /// (userid, roleid, no surrogate key). /// public class ApplicationUserRole { public int UserId { get; set; } public ApplicationUser User { get; set; } public int RoleId { get; set; } public ApplicationRole Role { get; set; } } }