linq vs. dataSet?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Andy B

    linq vs. dataSet?

    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?



  • Marc Gravell

    #2
    Re: linq vs. dataSet?

    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

    Comment

    Working...