Mongodb – Copy a field for all documents in a collection
I want to be able copy one field to another in a UpdateMany statement. Something like this: var updateDef = MongoDB.Driver.Builders<UserStory> .Update .Set(x => x.SemanticId, x => x.Id); But the current API doesn't support that. How can I do something…