示例#1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Countries EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCountries(Country country)
 {
     base.AddObject("Countries", country);
 }
示例#2
0
 /// <summary>
 /// Create a new Country object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="shortCode">Initial value of the ShortCode property.</param>
 public static Country CreateCountry(global::System.Int32 id, global::System.String name, global::System.String shortCode)
 {
     Country country = new Country();
     country.Id = id;
     country.Name = name;
     country.ShortCode = shortCode;
     return country;
 }