linq vs. dataSet?

  • Thread starter Thread starter Andy B
  • Start date Start date
A

Andy B

Is it more practicle to use linq instead of a dataSet for sql access? It
seems like it would take up less resources and less code. Any ideas on this
subject?
 
I would; you get the benefit of composable queries (i.e. your filters,
sorts, paging etc can be passed all the way to the database to
minimise data throughput), and the advantages of working with a more
typical class model.

Marc
 

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

Back
Top