Hi,

I'm trying to resolve issue NH2951, NHIbernate translate 

*update Invoice i set i.Customer = (select c from Customer c where c.Name = 
'Bob')*

to:

*update Invoice set Customer=(select Id from Customer customer1_ inner join 
Entity customer1_1_ on customer1_.Id=customer1_1_.Id where 
customer1_.Name='Bob')*

but I'm not find where NHibernate make the translate, more specific where I 
see NHibernate translate:

*select c from Customer c*

to:

*select Id from Customer customer1_*

Is there some class you recommend to me look? Or some tips for debug HQL?

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"nhibernate-development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to nhibernate-development+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/nhibernate-development/706ef0e7-1d52-4a14-9883-8c8ca80682c9%40googlegroups.com.

Reply via email to