I have a DataSet
named dsView
that contains data. Here is the code i use to read the XML:
dsView = new DataSet();
dsView.ReadXml(@"\c:MyXml.xml");
The data has a table named MEN
with fields Fname
and Lname
. How do I run a query on this dsView
? (for example: select * from MEN where Fname = 'zz'
)