Testing.AdventureWorksEntities.AddToVendors C# (CSharp) 메소드

AddToVendors() 공개 메소드

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
리턴 void
        public void AddToVendors(Vendor vendor)
        {
            base.AddObject("Vendors", vendor);
        }
    
AdventureWorksEntities