/// <summary> /// Create a new User object. /// </summary> /// <param name="id">Initial value of the ID property.</param> /// <param name="sID">Initial value of the SID property.</param> /// <param name="active">Initial value of the Active property.</param> public static User CreateUser(global::System.Guid id, global::System.String sID, global::System.Boolean active) { User user = new User(); user.ID = id; user.SID = sID; user.Active = active; return user; }
/// <summary> /// Deprecated Method for adding a new object to the Users EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToUsers(User user) { base.AddObject("Users", user); }