Testing.AdventureWorksEntities.AddToCountryRegions C# (CSharp) Method

AddToCountryRegions() public method

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