mongodb-csharp CRUD Operations in MongoDB C# Update a Document

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Example

var client = new MongoClient("mongodb://localhost:27017"); var database = client.GetDatabase("test"); var collection = database.GetCollection < Interactions > ("Interactions");

var update = MongoDB.Driver .Builders .Update.Set(s => s.SiteName, "New Example");

collection.FindOneAndUpdate(s => s.SiteName == "Example", update);



Got any mongodb-csharp Question?