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

AddToProductVendors() 공개 메소드

Deprecated Method for adding a new object to the ProductVendors EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
public AddToProductVendors ( ProductVendor productVendor ) : void
productVendor ProductVendor
리턴 void
        public void AddToProductVendors(ProductVendor productVendor)
        {
            base.AddObject("ProductVendors", productVendor);
        }
    
AdventureWorksEntities