/// <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="name">Initial value of the Name property.</param> public static User CreateUser(global::System.Guid userId, global::System.String name) { User user = new User(); user.UserId = userId; user.Name = name; return user; }
UserDC INotepad.AddUser(string userName, string userPass, string userDescription) { try { User user = new User { Name = userName, Password = userPass, Description = userDescription }; using(var context = new NotepadSharedEntities()) { context.User.Add(user); context.SaveChanges(); return new UserDC { UserId = user.Id, Pass = user.Password, Name = user.Name, Description = user.Description }; } } catch { return null; } }