/// <summary> /// Create a new user object. /// </summary> /// <param name="email">Initial value of the email property.</param> /// <param name="password">Initial value of the password property.</param> public static user Createuser(global::System.String email, global::System.String password) { user user = new user(); user.email = email; user.password = password; 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); }