I have a collection "foo":
db.foo.insert({a:[1, 10]})
db.foo.insert({a:[4, 6]})
and a query:
db.foo.find({a: {$elemMatch: {$gte: 5, $lte: 7}}})
and result is:
{a: [4, 6]}
My question is how to use Query.ElemMatch() in this situation?
|
I have a collection "foo":
and result is:
My question is how to use |
||||
|
|
I found a solution for my problem and hope it's useful for someone
|
|||
|
|
|
You can use C#'s collection initializer syntax to clean it up a bit:
|
|||
|
|