python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to apply IQueryOver<TRoot> methods to IQueryOver?
I'm wrapping QueryOver with the interface IQueryOver. Thanks UnderlyingCriteria I can access to the criteria.
I'd like to use the IQueryOver methods such as Take, Skip ...
My intention is to have a li...
lunatic84
Votes: 0
Answers: 1
Make custom Restriction NHibernate for QueryOver
I'm stuck in a simple problem, I'd like to add a new custom restriction in NHibernate. I want to write a simple QueryOver with a fulltext index, an example with a Projections is here How to use Full T...
lunatic84
Votes: 0
Answers: 1
How to check if there is a person in the database who has exactly two (or more) specific addresses? (QueryOver)
I want to check if there is a person in the database who has exactly two specific addresses.
My proper SQL query:
SELECT name, id FROM person
WHERE person.name = 'Kxxx' AND person.firstname = 'Axxx'
...
morales
Votes: 0
Answers: 1