Typed Dataset vs Classes - XSD.exe

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Good Morning;

I am collecting feedback on typed datasets vs class representation
implementation using automated code generated by XSD.exe. I can see the
benefits for a typed dataset for a rich UI application but do not see it for
non UI driven applications using the obejects. Inheritence.. etc.. Can
anyone direct me to some good info or thoughts about the subject.

Thanks
-Joe
 
BeanTownBizTalkGuru said:
Good Morning;

I am collecting feedback on typed datasets vs class representation
implementation using automated code generated by XSD.exe. I can see the
benefits for a typed dataset for a rich UI application but do not see it
for
non UI driven applications using the obejects. Inheritence.. etc.. Can
anyone direct me to some good info or thoughts about the subject.

You've pretty much got it.

DataSets offer
automatic change tracking and marshaling for your objects.
data binding
sorting and filtering

Classes offer
simpler representation
maximum performance for single object instances

The DataSet's features support the Fetch, Filter, Sort, Add/Update/Delete,
Save workflow. If your this is what your applicaion does, then wether or
not it has a UI, the DataSet will save you time.

David
 
Back
Top