Fixed
Details
Assignee
UnassignedUnassignedReporter
Ricardo PeresRicardo PeresLabels
Components
Fix versions
Affects versions
Priority
TrivialWho's Looking?
Open Who's Looking?
Details
Details
Assignee
Unassigned
UnassignedReporter
Ricardo Peres
Ricardo PeresLabels
Components
Fix versions
Affects versions
Priority
Who's Looking?
Open Who's Looking?
Created June 25, 2013 at 1:23 PM
Updated August 25, 2017 at 4:41 AM
Resolved August 25, 2017 at 4:41 AM
It was once discussed on NHibernate Development (https://groups.google.com/forum/#!searchin/nhibernate-development/strongly$20typed$20update$20linq/nhibernate-development/TukmNqPOfCc/RsYJGCNy2UgJ) the possibility to support LINQ-style deletes and updates, similar to what Entity Framework Extended (https://github.com/loresoft/EntityFramework.Extended) has for EF.
My idea is something like this:
session.Query<Product>().Where(x => x.Price > 1000).Delete();
Or:
session.Query<Product>().Delete(x => x.Price > 1000);
And:
session.Query<Product>().Where(x => x.Price > 1000).Update(x => x.Price = 500);