I am using DataSets for access to Sql Server 200x in a C# project. Our common practice is, in almost all tables, to not delete the record. Instead we have a field which simply holds a bit for whether the record is deleted. I can manually edit each table in the DataSet and make their select command include Where Deleted = 0 and the delete command be an update instead. However, this is tedious.
Is there any way to change the method that VS uses to generate the commands for the tableadaptor to add this functionality for them automatically?
Edit: In effect, this would be some sort of way to customize the GenerateDBDirectMethods functionality.