/// <summary> /// Create a new Board object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="ownerUserId">Initial value of the OwnerUserId property.</param> /// <param name="postedUserId">Initial value of the PostedUserId property.</param> /// <param name="message">Initial value of the Message property.</param> /// <param name="dateTimeStamp">Initial value of the DateTimeStamp property.</param> /// <param name="deleted">Initial value of the Deleted property.</param> public static Board CreateBoard(global::System.Int32 id, global::System.Int32 ownerUserId, global::System.Int32 postedUserId, global::System.String message, global::System.DateTime dateTimeStamp, global::System.Boolean deleted) { Board board = new Board(); board.Id = id; board.OwnerUserId = ownerUserId; board.PostedUserId = postedUserId; board.Message = message; board.DateTimeStamp = dateTimeStamp; board.Deleted = deleted; return board; }
/// <summary> /// Deprecated Method for adding a new object to the Boards EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToBoards(Board board) { base.AddObject("Boards", board); }