Tagged Questions
0
votes
0answers
193 views
Mongo C# driver dictionary serizalization
I'm trying to configure document serialization in my app. Problem is - seriializing object have dictionary with a custom data and some times keys in dictionary looks like "Test.0" or "Test_0".
If ...
0
votes
1answer
196 views
MongoDB, json class & dictionary member serializing
Let's say I've got such a class:
class A
{
Dictionary<string, string> Dict1 { get; set }
}
And I want it to be serialized to Json like that:
"A" : {"strKey1" : "strVal1", "strKey2" : ...
0
votes
1answer
224 views
MongoDB - Detect existence of JSON Nested Elements within code
If I have loaded the following json into a BSON document:
{
"contact":
{ "firstname":"Pete"
,"surname":"Jones"
,"company":[{"name":"Virgin","notes":"some virgin ...