tags:

views:

25

answers:

1

Is there an ORM that will allow me to do the following?

db.Delete<MyEntity>(x => ***some predicate***);

We use NHibernate and I don't believe this is possible with it.

+1  A: 

SubSonic is able to do something like this. http://subsonicproject.com/docs/Linq_Deletes

Alexander Lavrinovich