How can QueryOver be used to filter for a specific class?

前端 未结 2 328

I am currently dynamically constructing queries like so:

QueryOver q = QueryOver.Of();

if (foo != null) q = q.Where(b => b.         


        
相关标签:
2条回答
  • 2021-01-13 12:37

    This is not intuitive, but the following should work fine (QueryOver):

    if (bar) q = q.Where(b => b.GetType() == typeof(Derived));
    

    I'm not sure about a way to do this in LINQ-to-NH.

    0 讨论(0)
  • 2021-01-13 12:41

    The general QueryOver, asking for a subtype, would look like this:

    Base alias = null;
    
    var query = session.QueryOver<Base>(() => alias);
    
    // this statement would be converted to check of the discriminator
    query.Where(o => o is Derived);
    
    var list = query.List<Derived>();
    

    But this would result in a statement, expecting that discirminator is "MyNamespace.Derived". If this si not the case, we can use this approach:

    Base alias = null;
    
    var query = session.QueryOver<Base>(() => alias);
    
    // here we can compare whatever value, we've used as discriminator
    query.Where(Restrictions.Eq("alias.class", "Derived"));
    
    var list = query.List<Derived>();
    

    Here we are using the feature of NHibernate: ".class" which does return the value of discriminator

    More details could be found here:

    • 17.1.4.1. Alias and property references
    0 讨论(0)
提交回复
热议问题