2010-09-14 79 views
0

我試圖從XML模式加載數據表。我可以在數據表中看到列名,但是,我看不到數據。這裏是我的代碼:從XML模式加載數據表

StringReader sr = new StringReader(dsSorgu.Tables[0].Rows[i]["sorguSonucu"].ToString()); 
    s.M_Sonucu = new DataTable(); 
    s.M_Sonucu.ReadXmlSchema(sr); 
    srgKullaniciSorgulari.Add(s); 

sr包含xml架構。

回答

1

xml schema不包含任何數據,只包含表,關係和約束定義。您將需要調用ReadXml方法來加載實際數據(將由您的模式驗證)。