public UserRole AddUserToRole(User aUser, Role aRole)
        {
            UserRole myRole = UserRole.CreateUserRole(0, aUser.Id, aRole.Id);
            theEntities.AddToUserRoles(myRole);
            theEntities.SaveChanges();

            return myRole;
        }
 /// <summary>
 /// Deprecated Method for adding a new object to the Roles EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToRoles(Role role)
 {
     base.AddObject("Roles", role);
 }
 /// <summary>
 /// Create a new Role object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 /// <param name="defaultRole">Initial value of the DefaultRole property.</param>
 /// <param name="deleted">Initial value of the Deleted property.</param>
 public static Role CreateRole(global::System.Int32 id, global::System.String name, global::System.String description, global::System.Boolean defaultRole, global::System.Boolean deleted)
 {
     Role role = new Role();
     role.Id = id;
     role.Name = name;
     role.Description = description;
     role.DefaultRole = defaultRole;
     role.Deleted = deleted;
     return role;
 }
 private UserRole GetUserRole(User user, Role role)
 {
     return (from c in theEntities.UserRoles
             where c.User.Id == user.Id
             && c.Role.Id == role.Id
             select c).FirstOrDefault();
 }
        public void RemoveUserFromRole(User myUser, Role myRole)
        {
            UserRole userRole = (from ur in theEntities.UserRoles
                                 where ur.User.Id == myUser.Id
                                 && ur.Role.Id == myRole.Id
                                 select ur).FirstOrDefault();

            theEntities.DeleteObject(userRole);
            theEntities.SaveChanges();
        }