/// <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); }
/// <summary> /// Create a new country object. /// </summary> /// <param name="iso">Initial value of the iso property.</param> /// <param name="name">Initial value of the name property.</param> /// <param name="printable_name">Initial value of the printable_name property.</param> public static country Createcountry(global::System.String iso, global::System.String name, global::System.String printable_name) { country country = new country(); country.iso = iso; country.name = name; country.printable_name = printable_name; return country; }