JontyMC
JontyMC

Reputation: 6068

.Net ORM bulk deletion via predicate

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

Answers (1)

Alexander Lavrinovich
Alexander Lavrinovich

Reputation: 36

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

Upvotes: 1

Related Questions