Testing.AdventureWorksEntities.AddToShifts C# (CSharp) Method

AddToShifts() public method

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