/// <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="id">Initial value of the Id property.</param> /// <param name="cityName">Initial value of the CityName property.</param> public static City CreateCity(global::System.Int32 id, global::System.String cityName) { City city = new City(); city.Id = id; city.CityName = cityName; return city; }