Details
-
Improvement
-
Resolution: Won't Fix
-
Major - P3
-
None
-
1.10
-
None
Description
For a type like
class C
|
{
|
[BsonDictionaryOptions(DictionaryRepresentation.Document)]
|
public IDictionary H { get; set; } // serialized as { H : { x : 1, ... } }
|
}
|
enable querying like
object someInt = 42;
|
var query = from c in _collection.AsQueryable<C>()
|
where c.H["x"] == someInt
|
select c;
|