Reputation: 2884
I have this scenario:
var query = Session.QueryOver<T>()
var criteria = query.UnderlyingCriteria.SomethingThereAddCriterion()
How can I transform criteria back to IQueryOver()?
Upvotes: 1
Views: 202
Reputation: 2511
Your criterias has been added to the UnderlyingCriteria
of query
. So you don't need to transform criteria
to IQueryOver(). Just use query
again.
Upvotes: 5