In my database mongodb
I am saving a document with the following structure:
{
"_id": "A/B",
"Properties": {
"Abandoned": {
"TypeName": "int",
"Name": "A/B/Abandoned",
"Value": 2
},
"Busy": {
"TypeName": "byte[]",
"Name": "A/B/Busy",
"Value": "<bynarydata>"
}
}
}
The properties do not have a known name and so I can not browse them, ie I can not use Properties.Abandoned
(for example)
I would like to get all properties whose TypeName
is not byte[]
. Can you do that?
To clarify: In the document I gave as an example, I wanted to get only the Abandoned
property.