/// <summary>
 /// TermRelationships EntitySet に新しいオブジェクトを追加するための非推奨のメソッドです。代わりに、関連付けられている ObjectSet&lt;T&gt; プロパティの .Add メソッドを使用してください。
 /// </summary>
 public void AddToTermRelationships(TermRelationships termRelationships)
 {
     base.AddObject("TermRelationships", termRelationships);
 }
 /// <summary>
 /// 新しい TermRelationships オブジェクトを作成します。
 /// </summary>
 /// <param name="objectId">ObjectId プロパティの初期値。</param>
 /// <param name="termTaxonomyId">TermTaxonomyId プロパティの初期値。</param>
 /// <param name="termOrder">TermOrder プロパティの初期値。</param>
 public static TermRelationships CreateTermRelationships(global::System.Decimal objectId, global::System.Decimal termTaxonomyId, global::System.Int32 termOrder)
 {
     TermRelationships termRelationships = new TermRelationships();
     termRelationships.ObjectId = objectId;
     termRelationships.TermTaxonomyId = termTaxonomyId;
     termRelationships.TermOrder = termOrder;
     return termRelationships;
 }