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

AddToCustomers() 공개 메소드

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