Typed Dataset vs Classes - XSD.exe

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
 
D

David Browne

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top