XML文字列の操作を始めたのはつい最近のことです。私が今していることは、データベースからレコードをプルするためにWebサービスを使用することです。次の出力を返します。
<?xml version="1.0" encoding="utf-16"?>
<Records count="2">
<Metadata>
<FieldDefinitions>
<FieldDefinition id="13597" name="Statement" alias="Statement" />
<FieldDefinition id="13598" name="Response" alias="Response" />
</FieldDefinitions>
</Metadata>
<Record contentId="154321" moduleId="409">
<Field id="13597" type="1"><p>This is a database record</p></Field>
<Field id="13598" type="1"><p>This is a record</p></Field>
</Record>
<Record contentId="154755" moduleId="409">
<Field id="13597" type="1"><p>This is another database record</p></Field>
<Field id="13598" type="1"><p>And another corresponding record</p></Field>
</Record>
</Records>
私が達成しようとしているのは、ユーザーに表示されるdatatable/datagridviewです。これは次のようになります。
| Statement | Response |
|This is a datab..| This is a corr.|
|This is another..| And another....|
私は次のコードを試しました:
private void WriteDataGrid(string xml)
{
DataSet ds = new DataSet();
XmlTextReader reader = new XmlTextReader(xml, XmlNodeType.Document, null);
ds.ReadXml(reader);
dataGridView1.DataSource = ds;
dataGridView1.DataMember = "Field";
}
しかし、それはこれを取得することしかできませんでした:
| id | type | Field_Text |
|13597 | 1 | This is a... |
|13598 | 1 | This is a corr...|
|13597 | 1 | This is anoth... |
|13598 | 1 | And anothe... |
xmlのフィールドIDを使用して一意の列を作成し、囲まれた値に基づいて行の値を設定する予定です。しかし、私はこれをどのように行えばよいのかわかりません。誰か助けてもらえますか?それとも、私がやろうとしていることを達成するためのより良い方法はありますか?
Elementsが一意であるとはるかに簡単になることは承知していますが、Webサービスの出力を変更することはできません。
どんな助けでも大歓迎です。
編集:
XML文字列にHTMLタグとマークアップ(具体的には<p> </ p>)(&lt&gt&ampなど)がフィールドテキストに含まれることを追加し忘れたことに気づきました。データテーブルに書き込む前に、これらを削除/エスケープ/デコードする方法について誰かが提案を持っていますか?