/// <summary> /// wp_terms EntitySet に新しいオブジェクトを追加するための非推奨のメソッドです。代わりに、関連付けられている ObjectSet<T> プロパティの .Add メソッドを使用してください。 /// </summary> public void AddTowp_terms(wp_terms wp_terms) { base.AddObject("wp_terms", wp_terms); }
/// <summary> /// 新しい wp_terms オブジェクトを作成します。 /// </summary> /// <param name="term_id">term_id プロパティの初期値。</param> /// <param name="name">name プロパティの初期値。</param> /// <param name="slug">slug プロパティの初期値。</param> /// <param name="term_group">term_group プロパティの初期値。</param> public static wp_terms Createwp_terms(global::System.Decimal term_id, global::System.String name, global::System.String slug, global::System.Int64 term_group) { wp_terms wp_terms = new wp_terms(); wp_terms.term_id = term_id; wp_terms.name = name; wp_terms.slug = slug; wp_terms.term_group = term_group; return wp_terms; }