Hi,
Assumption - For a simple app I have with only a few tables & I plan to stay simple and use DataSet for my data access as well as domain layer. In other way, in this small application, I won't create separate classes but rather just use the DataSet directly.
Question - Does anyone have any code/patterns/suggestions re how best to do this approach?
For example, how to add helper methods (that'll be used multiple times) that I can use on the dataset that understand the data structure. Would a pattern such as extending the DataSet class to my own, and then putting these methods in here, be a good approach).
Thanks