I currently have a single DataSet declared which contains 3 tables. For sake of this example we will call them User, Question and Answer.
On each of these I have a TableAdapter with the various methods required, ie. GetData(), Update(), Delete() etc.
On the Answer Table I would like to override the Update Method from the TableAdapter to add some Parameters which are not part of the table, but I need to pass due to the ObjectDataSource requirement.
How do I go about overriding the Update() method on the Answer TableAdapter?
In trying to keep the project simple, I don't want to create a separate DAL layer.