Testing.AdventureWorksEntities.AddToStoreContacts C# (CSharp) Method

AddToStoreContacts() public method

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