/// <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); }
/// <summary> /// Create a new User object. /// </summary> /// <param name="userId">Initial value of the UserId property.</param> /// <param name="login">Initial value of the Login property.</param> /// <param name="email">Initial value of the Email property.</param> /// <param name="about">Initial value of the About property.</param> /// <param name="registrationDate">Initial value of the RegistrationDate property.</param> public static User CreateUser(global::System.Guid userId, global::System.String login, global::System.String email, global::System.String about, global::System.DateTime registrationDate) { User user = new User(); user.UserId = userId; user.Login = login; user.Email = email; user.About = about; user.RegistrationDate = registrationDate; return user; }