ユーザー入力に基づいて XML ファイルを動的に作成する必要があります。
これが私が思いついたものであり、2つの問題にぶつかっています。
- 同じ要素のコレクションがある場合 (MaxOccurs = 10) (たとえば、ユーザーが 4 つのアカウントを入力した場合、私のコードはどうあるべきか)
- 選択肢があれば。選択した要素に基づいて、子要素を変更する必要があります。
誰か助けてください。
前もって感謝します
BB
私のコード:
XElement req =
new XElement("order",
new XElement("client",
new XAttribute("id", clientId),
new XElement("quoteback",
new XAttribute ("name",quotebackname)
)
),
new XElement("accounting",
new XElement("account"),
new XElement("special_billing_id")
),
new XElement("products",
new XElement(
**productChoiceType**,
***** HERE THE ELEMENTS WILL CHAGE BASED ON **productChoiceType**
)
)
)
);