/// <summary> /// Deprecated Method for adding a new object to the Tasks EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToTasks(Task task) { base.AddObject("Tasks", task); }
/// <summary> /// Create a new Task object. /// </summary> /// <param name="taskID">Initial value of the TaskID property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="description">Initial value of the Description property.</param> public static Task CreateTask(global::System.Int32 taskID, global::System.String name, global::System.String description) { Task task = new Task(); task.TaskID = taskID; task.Name = name; task.Description = description; return task; }