Skip to content

Instantly share code, notes, and snippets.

@AbhinavPradeep
Created December 20, 2019 05:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AbhinavPradeep/c6f6f0065dac6ea73f281ae2bb5238f4 to your computer and use it in GitHub Desktop.
Save AbhinavPradeep/c6f6f0065dac6ea73f281ae2bb5238f4 to your computer and use it in GitHub Desktop.
private static void UpdateRename(IMongoCollection<Person> collection, int id,string field, string renamed)
{
var update = Builders<Person>.Update.Set(field,renamed);
collection.UpdateOne(x => x._id == id,update);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment