For example, a `Dictionary<string, int>` could be represented in 3 ways:
{ life : 41 }
[['life', 41]]
[{ k : 'life', v : 41 }]
Corresponding to `Documents`, `ArrayOfArrays` and `ArrayOfDocuments`.
We should support queries against all 3 representations.
- depends on
-
CSHARP-1913 Support using Dictionary fields as IEnumerable<KeyValuePair<TKey, TValue>>
-
- Closed
-
-
CSHARP-5779 Support Dictionary Keys and Values properties
-
- Closed
-
- is duplicated by
-
CSHARP-3095 Ensure Dictionaries are fully supported in LINQ queries
-
- Closed
-
-
CSHARP-4701 LINQ3 produces ExpressionNotSupported error on ContainsKey for DictionaryRepresentation.ArrayOfDocuments
-
- Closed
-
- is related to
-
CSHARP-3095 Ensure Dictionaries are fully supported in LINQ queries
-
- Closed
-