In the C# mongodb driver, there are 3 possible representations for Dictionaries: Document, ArrayOfArrays, ArrayOfDocuments. https://mongodb.github.io/mongo-csharp-driver/2.8/reference/bson/mapping/#dictionary-serialization-options
As far as I understand, the Java driver supports (only or by default) the "Document" representation.
Is there a Convention or other built-in way to configure the driver to use ArrayOfArrays? I was not able to see anything related in the MongoDB Java Driver documentation.