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

AddToCountryRegions() 공개 메소드

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
리턴 void
        public void AddToCountryRegions(CountryRegion countryRegion)
        {
            base.AddObject("CountryRegions", countryRegion);
        }
    
AdventureWorksEntities