Wouldn't it be great....
If there was a way to use TSQL syntax to query against a loaded DataSet? Something like:
Dim Settings
As New DataSet
Settings.ReadXml("..\settings.xml",
XmlReadMode.InferSchema)
Dim result As New DataTable =
Settings.Query("SELECT * FROM Tables(0) WHERE Row.Item('Default') =
FALSE")
SomeDataGrid.DataSource = result
SomeDataGrid.DataBind
Man, I think that would be neat. Anybody know if you can do this today?