how do we rename embedded fields using C# with mongoDB ? An example of document Person would be:
{
Id: 1,
LastName: "Smith",
FirstName: "John",
Orders: {
Id: 1,
Name: "Trousers" // I want to rename **Name** into **Something**
}
}
With mongoDB syntax, it would be something like
db.Users.update({}, {$rename:{"Orders.Name":"Orders.Something"}},true, true)
Thanks.