Reputation: 6068
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.
Upvotes: 0
Views: 65
Reputation: 36
SubSonic is able to do something like this. http://subsonicproject.com/docs/Linq_Deletes
Upvotes: 1