Querying a child collection by multiple values in RavenDB

前端 未结 3 2008
野性不改
野性不改 2021-01-02 20:21

I\'m using RavenDB build 371 and I have the following model:

class Product {
 public string Id { get; set; }
 public ProductSpec[] Specs { get; set; }
}

cla         


        
3条回答
  •  -上瘾入骨i
    2021-01-02 20:38

    As per build 717 you can do this using the new .Intersect() feature that has been done by Matt Warren. Take a look here: http://issues.hibernatingrhinos.com/issue/RavenDB-51

提交回复
热议问题