コード例 #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Cities EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCities(City city)
 {
     base.AddObject("Cities", city);
 }
コード例 #2
0
 /// <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.Int32 cityId, global::System.Int16 countryId, global::System.String name)
 {
     City city = new City();
     city.CityId = cityId;
     city.CountryId = countryId;
     city.Name = name;
     return city;
 }