views:

76

answers:

5

Hello,

I've been doing a lot of implementation in Linq recently, and it suddenly occurred to me that as great as it is, I haven't really explored any other options.

Any thoughts?

A: 

Have you tried SubSonic? It does linq, code generation, and some fluid querries.

Filip
+4  A: 

Well, SQL is a perfectly fine alternative.

However, I think you may be looking for something like the ADO.NET Entity Framework.

Jordan S. Jones
A: 

Subsonic, NHibernate (don't forget to look at Fluent NHibernate), Typed DataSets (yuck), MS Entity Framework and iBatis all come to mind.

Neil Barnwell
A: 

NHibernate is another good ORM. Or EntityFramework

Slace
A: 

In addition to the other answers:

RobS