开发者

Finding parents where child collection does not contain an item with a specific property value

开发者 https://www.devze.com 2022-12-28 18:14 出处:网络
I am trying to get a list of parents where the child collection does not contain an item of a specific type.The LINQ equivalent would be something like:

I am trying to get a list of parents where the child collection does not contain an item of a specific type. The LINQ equivalent would be something like:

dat开发者_C百科aset.Where(x => x.Items.FirstOrDefault(y => y.Type.Code == "ABC") == null)

The object model is Parent > Child (Items) > Type > Code

If Parent is my aggregate root, how would I model this in NHibernate criteria/query? Here's my first attempt:

var results = session.CreateCriteria<Parent>()
    .CreateCriteria("Items")
    .CreateCriteria("Type")
    .Add(Restrictions.Not(Restrictions.Eq("Code", "ABC")))
    .SetResultTransformer(Transformers.DistinctRootEntity)
    .List<Parent>();

This doesn't seem to return the right entities - it just returns them all.


It's easier to do this with HQL than with Criteria:

from Parent
where id not in
      (select p.Id
       from Parent p
       join p.Items item
       where item.Type.Code = 'ABC')

You'll get the result you expected, and without the need for DistinctRootEntity.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号