vote up 6 vote down star
1

With .Net 3.5 SP1 adding Entity Data Model as an option for data access we are now faced with several out of the box options; EDM, LINQ-to-SQL, Typed Datasets, pure ADO.Net.

We also have several open source options; Subsonic, NHibernate, LLBLGen.

So the question for the poll:

What is your single favorite Data Access Methodology for ASP.Net?

(Remember if your favorite is already listed just vote it up.)

flag

60% accept rate
What's the point of the poll? Are you going to decide to use one based on popularity? Research them and pick the one that best meets your needs. – John Sheehan Sep 17 '08 at 14:33

11 Answers

vote up 1 vote down

I used SubSonic extensively in several decent sized complex projects; it performed well (with some minor exceptions such as a Memory Leak in Loading collections which we fixed). What i didn't like about SubSonic was the version upgrade nightmare. We went through many of these and its was a huge issue, different versions had backward compatibility issues and the code generation tools (SubCommander.exe) had to match the appropriate version or you would be in trouble.

We had 5 developers working on the same project which brought many of these issues to light. Recently I've moved on to Linq-to-Sql and have been extremely happy with it. We gave the ADO.NET Entity Framework a try but it's total lack of support for stored procedures, lazy loading, and the fact that the designer refused to show up after you had used it for the first time proved that the ADO.NET Entity Framework is severely flawed, we ended up signing the Alt.NET "vote of no confidence".

So at this point in time Linq-to-Sql is by far the winner in the competition but we shall see how it performs in the long-run

link|flag
vote up 1 vote down

Personally, I currently use POCO + Stored Procs. But I've just had a look at Subsonic and it looks great. It would have been useful in a previous role where we used a DNA architecture.

Not sure about my current role; it's swings and roundabouts.

link|flag
vote up 1 vote down

Either old school with StoredProcs, SqlDataReaders and DataSet or Subsonic.

Linq seems pretty promising for now, but have to play more with it to see if its better than Subsonic.

link|flag
vote up 1 vote down

I personally prefer Stored Procedures on the DB side, and DataReaders etc on the .NET side. Typically using the Microsoft APplication Blocks.

link|flag
vote up 1 vote down

LINQ-to-SQL

link|flag
vote up 3 vote down

subsonic is my favorite for starting projects

link|flag
vote up 3 vote down

POCO + Stored Procedures.

(POCO = Plain Old CLR Objects)

link|flag
vote up 1 vote down

nHibernate for applications with a dedicated database and Ibatis.Net for a central database with more applications depending on it.

Both enable real persistence ignorance in domain objects. nHibernate is less flexible with respect to the database but that doesn't matter if you can design your database for nHibernate use, this will probably be less of an issue with v2.0. Ibatis can handle any database you throw at it, even stored proc's

link|flag
vote up 2 vote down

NHibernate

link|flag
vote up 1 vote down

I like LLBLGen but consider Active Record (NHibernate)

link|flag
vote up 3 vote down

I vote for LLBLGen

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.