NHibernate 3 LINQ provider creates non-ansi join syntax -


i'm pretty new linq (and nhibernate's linq provider)

i have query joins 3 tables in grandparent-parent-child using many-to-one mappings.

the actual sql nhibernate throwing out using old-school table1, table2, table3 join syntax.

is there way make use ansi joins instead? (i see using fetch() this, syntax isn't standard linq stuff)

cheers, mark

no, it's not possible.

keep in mind that, while ansi syntax cleaner , allows easier outer joins, it's semantically equivalent "old one" inner joins, shouldn't care.


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -