How to make a "null table" in NHibernate?
In other words, how do you do something simple:
select 1
Or more specifically in the specific problem I'm dealing with, something like this:
SELECT (case when exists (<subquery>) then 1 else 0 end) AS result
In short, is there a way in NHibernate to make a selection without creating a "FROM table" clause?
0