/// <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="id">Initial value of the ID property.</param> /// <param name="role1">Initial value of the Role1 property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="description">Initial value of the Description property.</param> /// <param name="canceledMark">Initial value of the CanceledMark property.</param> public static Role CreateRole(global::System.Int32 id, global::System.Int32 role1, global::System.String name, global::System.String description, global::System.Int32 canceledMark) { Role role = new Role(); role.ID = id; role.Role1 = role1; role.Name = name; role.Description = description; role.CanceledMark = canceledMark; return role; }