Is there any way to execute following query with native NHibernate linq provider?
var result = (from e1 in Session.Query() join e2 in Se
It's still not supported.
You should either introduce a relation between the objects or use SQL for the query.