Query a typed dataset

  • Thread starter Thread starter M K
  • Start date Start date
M

M K

I have an in memory dataset that I would like to query. 2
tables. I want to get results based on data from the 2
tables.

How can I do this?
 
Currently there is no built-in way to query the data in your DataSet. One
way is to work with relations between the tables (if they're related) and
then navigate to child or parent rows. Depending on what kind of query you
want to execute, will a row filter or a PK search not do?
 
Back
Top