Epiworx.Data.EntityFramework.ApplicationEntities.AddToSprints C# (CSharp) Method

AddToSprints() public method

Deprecated Method for adding a new object to the Sprints EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
public AddToSprints ( Sprint sprint ) : void
sprint Sprint
return void
        public void AddToSprints(Sprint sprint)
        {
            base.AddObject("Sprints", sprint);
        }