I have a DataSet with some Datatables and I am saving this DataSet as XML file (C#) ..is there any way to load only some part开发者_高级运维s of this XML file into the DataSet when I start my program instead of loading all the file ?
Position your XmlReader
on the start of the fragment you want, then call DataTable.ReadXml
.
精彩评论