Check out example codes for "c# mongodb update multiple fields". It will help you in understanding the concepts better.
Code Example 1
var update = Update.Set("Email", "[email protected]")
.Set("Phone", "4455512");
Code Example 2
var update = Update<Person>.
Set(p => p.Email, "[email protected]").
Set(p => p.Phone, "4455512");
Learn ReactJs, React Native from akashmittal.com