I am trying to delete data from a table using a SQLDataAdapter, and to do so I need to give it a DeleteCommand.
The SQL I would use to delete a row is:
DELETE FROM table WHERE ID = x
The problem is thus: How do I specify to the DataAdapter what to replace x with? The SQL to generate the DataAdapter is slightly different (no joins) than the data table it's being told to update (an outer join).
How can I do this?