views:

35

answers:

3

HI, I am currently using the ASP.NET MVC pattern for my small application. I am using LINQ to SQL to manipulate with objects of model. I am using lambda and queries to manipulate. But as i found lot of limitations with LINQ to SQL concept I am planning to remove. so which is the best option rather than LINQ to SQL for manipulation with data in ASP.NET MVC 2?

+1  A: 

Entity Framework or nHibernate if you want something similar to LINQ to SQL but with a fuller feature set.

You might also want to check out Subsonic if you're familiar with the ActiveRecord pattern.

Justin Niessner
A: 

One popular and widely used/supported option for an ORM is NHibernate.

David