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