/// <summary> /// Create a new City object. /// </summary> /// <param name="cityId">Initial value of the CityId property.</param> /// <param name="description">Initial value of the Description property.</param> public static City CreateCity(global::System.Int32 cityId, global::System.String description) { City city = new City(); city.CityId = cityId; city.Description = description; return city; }
/// <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); }