/// <summary> /// Create a new Country object. /// </summary> /// <param name="countryId">Initial value of the CountryId property.</param> /// <param name="countrycode">Initial value of the countrycode property.</param> public static Country CreateCountry(global::System.Int32 countryId, global::System.String countrycode) { Country country = new Country(); country.CountryId = countryId; country.countrycode = countrycode; return country; }
/// <summary> /// Deprecated Method for adding a new object to the Countries EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToCountries(Country country) { base.AddObject("Countries", country); }