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

AddToProductInventories() 공개 메소드

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