예제 #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the tblCity EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddTotblCity(City city)
 {
     base.AddObject("tblCity", city);
 }
예제 #2
0
 /// <summary>
 /// Create a new City object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="isSelected">Initial value of the IsSelected property.</param>
 public static City CreateCity(global::System.Int32 id, global::System.String name, global::System.Boolean isSelected)
 {
     City city = new City();
     city.ID = id;
     city.Name = name;
     city.IsSelected = isSelected;
     return city;
 }