With a document structure
{_id:"abc",value:{x:1,y:2,z:3}}
i'd like to populate a poco:
public class{
string Id{get;set;}
int x:{get;set;}
int y:{get;set;}
int z:{get;set;}
}Is it supported to place the BsonElementAttribute with dotted notation?
[BsonElement("value.x")]
int x:{get;set;}
It compiles fine, but doesn't populate x