1. (N)Hibernate Auto-Join stackoverflow.comI'm developing a web- application using NHibernate. Can you tell me how to write a NHibernate Query for the following SQL query: select v1.Id from View v1 left join View v2 on v1.SourceView = ... |
2. Left Join in NHibernate HQL stackoverflow.comIs it possible to perform a left join between two tables that are not related each other through a parent-child or many-to-many relationship ?. All the samples I found around only ... |
3. Converting from SQL to HQL fail stackoverflow.comTrying to go from here this SQL:
|
4. NHibernate: How to exclude a class which is part of a join using the Criteria API stackoverflow.comI am still new to Hibernate and am attempting to use it for a web site I have inherited. Unfortunately that means sometimes the db schemas don't always make sense. With ... |
5. NHibernate Joining Data in HQL stackoverflow.comI have the following two tables mapped in NHibernate: VehicleCheck
VehicleCheckItem
What I want to do is get the most recent vehicleCheck ... |
6. NHibernate Native SQL multiple joins stackoverflow.comI"m having some problems with Nhibernate and native sql. I've got an entity with alot of collections and I am doing an SQL Fulltext search on it. So when returning 100 or ... |
7. NHibernate how to join to table twice in HQL stackoverflow.com
|
8. Automatic join with NHibernate / Many-to-one / HQL stackoverflow.comI'm working on a .NET C# project on which I had to use NHibernate Mapping Attributes to map my objects to my tables in my database. Now let's explain what my problem ... |
9. hql join - Path expected for join stackoverflow.comI have the following hql. This works fine if i don't try and include the "OrderItem" entity. I understand that there is no "on" clause in hql. What is the best ... |
10. NHibernate HQL - Joining stackoverflow.comI want todo a simple join, well just comparing the ID's in two tables.. I have my Group Table, containing;
|
11. NHibernate inner join gives "Path expected for join" stackoverflow.comI have three Tables:
where PersonSecret reference to Person and User:
|
12. HQL Path expected for join (when joining same table) stackoverflow.comI am trying to get pairs of measurement for two different devices, joined on equal Timestamps. In SQL, this works as expected:
|
13. How to inner join a derived table with Hibernate/NHibernate? stackoverflow.com(First i'd like to apologize if this is a duplicate, I can't find any good solution for it even though it must be simple) I'm creating reports from sales-data and need to ... |
14. HQL join vs. Exists stackoverflow.comI'm trying to adjust an existing HQL query's WHERE clause; where currently I'm filtering on the 'User.Affiliate' property (user record has a FK to affiliate):
|
15. How to do ThenFetch in Hql and How do you break up many joins in nhibernate linq? stackoverflow.comI have 2 questions
|