Dataset Question

  • Thread starter Thread starter Ty
  • Start date Start date
T

Ty

I am using typed datsets in my application to persist user data. The
problem I am coming across is how to map my business entities to the db
structure (about 8 tables with data relations). I could create on typed
dataset to represent the whole structure or break it up. What is the best
approach?

Thanks
 
If you need to manage relations I would go with one DataSet, many
Datatables, many DataRelations.
 
Back
Top