I have a Visual Basic .NET 2.0 WinForm application that contains a datagridview and a dataset. The dataset contain two tables with a parent/child relationship like Customer/Orders. The datagridview is bound to the master table. The dataset is created during runtime and the master table populated with a list of files from a user selected directory and is not connected to a physical database. From that point, I’m only creating and updating the child rows in the dataset as the datagridview is mostly used to let the user navigate records.
How do I create various dataviews of the master table based on the contents of the child table? Like “show me all the parent records that have one or more child records�or “show me all the parent records that do not have any child records�
I looked at the filter property of the dataview but that seems to be like the WHERE clause of a select statement.
DeBug