NHibernate QueryOver to join unrelated entities

前端 未结 4 1526
我寻月下人不归
我寻月下人不归 2020-12-16 20:07

I have the following query working which gets the results I want:

int associatedId = 123;

MyObject alias = null;

var subQuery = QueryOver.Of

        
相关标签:
4条回答
  • 2020-12-16 20:35

    I realize this question is 5 years old, and the "correct" answer is definitely that you can't do this with QueryOver, as the other answers indicate. However, if you really need this functionality (as I did), there is a decent workaround that I found.

    The solution is to use a "loader query" with native SQL in your mapping XML to produce a related collection (see http://nhibernate.info/doc/nhibernate-reference/querysql.html#querysql-load). In the OP's specific example, you would go ahead and map your DatabaseView as an entity as suggested, and then write the following in your mapping:

    <class name="MyObject"...>
        ...
        <set name="MyViews" inverse="true">
            <key column="ObjectId" foreign-key="none"/>
            <one-to-many class="MyObject"/>
            <loader query-ref="myObjectViewsLoadQuery"/>
        </set>
    </class>
    

    Then we just need to define our named myObjectViewsLoadQuery in raw SQL to explain to NH how to join the two:

    <sql-query name="myObjectViewsLoadQuery">
        <load-collection alias="view" role="MyObject.MyViews"/>
        SELECT view.*
        FROM DatabaseView view
        WHERE view.ObjectId = :id
    </sql-query>
    

    We can now pretend like there is a "real" collection named MyViews relating MyObject to DatabaseView in our query:

    MyObject alias = null;
    DatabaseView view = null;
    var results = session.QueryOver<MyObject>(() => alias)
         .JoinAlias( () => alias.MyViews, () => view )
         //.Where( () => view.Property == "myValue" ) // optionally, restrict the view etc.
         .List();
    

    Certainly, this is a lot of trouble to go through if you only care about an "elegant" query. However, if the reason you are using QueryOver is that you want to be able to accept arbitrary input Expressions to filter your DatabaseView by, or various similar activities, this works very nicely.

    0 讨论(0)
  • 2020-12-16 20:37

    You cannot do that using QueryOver, Criteria or Linq. The only way you can do this is via HQL.

    http://www.codewrecks.com/blog/index.php/2009/09/04/theta-join-in-hql-join-with-unrelated-entities/

    0 讨论(0)
  • 2020-12-16 20:57

    In NHibernate 5.1 it's possible for QueryOver via Entity Join:

    int associatedId = 123;
    
    MyObject alias = null;
    DatabaseView viewAlias = null;
    
    var results = session.QueryOver<MyObject>(() => alias)
        .JoinEntityAlias(() => viewAlias, () => viewAlias.ObjectId == alias.ObjectId && viewAlias.AssociatedId == associatedId)
        .List();
    
    0 讨论(0)
  • 2020-12-16 21:00

    You can join onto unrelated entities with Linq in NHibernate 3+

    Funnily enough you use the join query expression element:

    from type1 in Repository.Query<MyType1>() 
    join type2 in Repository.Query<MyType2>() 
    on type1.Id equals type2.Id
    

    Note: Repository.Query is just returning an IQueryable Query from the session

    I'm hoping there is a solution for QueryOver as I don't always want to model two-way relationships in my domain but they are still useful for querying.

    Also, you can map a Access="noop" 2 way relationship using Criteria API without putting into your POCO classes:

    http://ayende.com/blog/4054/nhibernate-query-only-properties

    0 讨论(0)
提交回复
热议问题