/// <summary>
 /// Deprecated Method for adding a new object to the languages EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddTolanguages(language language)
 {
     base.AddObject("languages", language);
 }
 /// <summary>
 /// Create a new language object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 /// <param name="iso_code_3t">Initial value of the iso_code_3t property.</param>
 /// <param name="iso_code_3b">Initial value of the iso_code_3b property.</param>
 /// <param name="name">Initial value of the name property.</param>
 /// <param name="frequency">Initial value of the frequency property.</param>
 public static language Createlanguage(global::System.Int32 id, global::System.String iso_code_3t, global::System.String iso_code_3b, global::System.String name, global::System.Int32 frequency)
 {
     language language = new language();
     language.id = id;
     language.iso_code_3t = iso_code_3t;
     language.iso_code_3b = iso_code_3b;
     language.name = name;
     language.frequency = frequency;
     return language;
 }