Testing.AdventureWorksEntities.AddToCustomers C# (CSharp) Method

AddToCustomers() public method

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
return void
        public void AddToCustomers(Customer customer)
        {
            base.AddObject("Customers", customer);
        }
    
AdventureWorksEntities