I want to find an array nested in a document. The document structure is like this :
{
name:himani;
user:
{
Id: 1,
Qualification: Programmer,
PhoneNo: [2524785, 9983410902]
}
}
Now I want to find PhoneNo and add a new number to it. I am using C# driver . Please tell me the way of doing it.