Search code examples
.netlinqlinq-to-sql.net-3.5

.Net 3.5 database access


I guess I'm old school, when I architect a project I still think of writing a database layer that includes use of objects like datareaders and datasets... But it seems to me that Microsoft had to come up with better tools since my last project in 2.0, something that would hide all the pipping labor and keep the developer focused on writing logic, or at least less plumbing code.

How is that done with 3.5 ?

Thanks, Yann


Solution

  • Well...Don't discount your experience with datasets and readers yet ;-)

    You might like to look at Linq to Entities or things like NHibernate and other ORM's. But don't let the hype carry you away, evaluate them against your requirements, you may just find that you still come back to Datasets and readers in some cases.