Testing.AdventureWorksEntities.AddToVendors C# (CSharp) Method

AddToVendors() public method

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