Testing.AdventureWorksEntities.AddToContacts C# (CSharp) Method

AddToContacts() public method

Deprecated Method for adding a new object to the Contacts EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
public AddToContacts ( Contact contact ) : void
contact Contact
return void
        public void AddToContacts(Contact contact)
        {
            base.AddObject("Contacts", contact);
        }
    
AdventureWorksEntities