/// <summary> /// Deprecated Method for adding a new object to the Roles EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToRoles(Role role) { base.AddObject("Roles", role); }
/// <summary> /// Create a new Role object. /// </summary> /// <param name="roleID">Initial value of the RoleID property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="description">Initial value of the Description property.</param> /// <param name="status">Initial value of the Status property.</param> public static Role CreateRole(global::System.Int32 roleID, global::System.String name, global::System.String description, global::System.Int32 status) { Role role = new Role(); role.RoleID = roleID; role.Name = name; role.Description = description; role.Status = status; return role; }