I want to populate a control with a query to a DataSet but I want to add new data to the table in the DataSet and update the control with this new data that matches the query.
It’s like a live query where I’d like to receive any new row that matches the same query.
Thanks all.
Just retrieve another dataset that contains the new values and then call the Merge method on the original dataset using the new dataset as the parameter.