我使用数据集来读取XML
ds.ReadXML(steam);
我的XML看起来像这样:
<models.Client>
<id>1</id>
<libelle>test</libelle>
<nbSite>0</nbSite>
<cabinet>false</cabinet>
<clinique>false</clinique>
<irm>0</irm>
<scanner>0</scanner>
<adresse>
<id>1</id>
<ligne1>1, rue toto</ligne1>
<ligne2 />
<codePostal />
<ville />
<coordonnee>
<id>1</id>
<telephone />
</coordonnee>
</adresse>
</models.Client>
我如何获得“ligne1”值?
对于“libelle”,我这样得到了价值:
ds.Tables[0].Rows[0]["libelle"].ToString();
并且没关系,但“ligne1”是models.Client的孩子。
感谢
答案 0 :(得分:1)
它将是第二个(index = 1)数据表,所以:
ds.Tables[1].Rows[0]["ligne1"].ToString();
将打印:1,rue toto