/// <summary> /// Create a new User object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="userName">Initial value of the UserName property.</param> /// <param name="password">Initial value of the Password property.</param> /// <param name="type">Initial value of the Type property.</param> public static User CreateUser(global::System.Int32 id, global::System.String userName, global::System.String password, global::System.String type) { User user = new User(); user.Id = id; user.UserName = userName; user.Password = password; user.Type = type; 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); }