Cannot do a cross / outer apply #2956
Unanswered
NicolasLOJO
asked this question in
Q&A
Replies: 1 comment
-
Named queries are not the only way to execute SQL queries with NHibernate. Use a SQL query. See here. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I cannot find any documentation on how to do some cross / outer apply with NHibernate and i cannot do a named query because all my query is dynamicly created.
This is a exemple on what i want to do with NHibernate :
CROSS apply ( VALUES (foo.a, foo.b, foo.c, foo.d, foo.e), (bar.a, bar.b, bar.c, bar.d, bar.e) ) AS toto (a, b, c, d, e)
It is possible to do this ? or not integrated to NHibernate ?
Beta Was this translation helpful? Give feedback.
All reactions