/// <summary> /// Deprecated Method for adding a new object to the Cities EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToCities(City city) { base.AddObject("Cities", city); }
/// <summary> /// Create a new City object. /// </summary> /// <param name="cityID">Initial value of the CityID property.</param> /// <param name="countryID">Initial value of the CountryID property.</param> /// <param name="name">Initial value of the Name property.</param> public static City CreateCity(global::System.Guid cityID, global::System.Guid countryID, global::System.String name) { City city = new City(); city.CityID = cityID; city.CountryID = countryID; city.Name = name; return city; }