mongodb-csharp CRUD Operations in MongoDB C# Delete 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");
    
collection.DeleteOne(s => s.SiteName == "New Example");


Got any mongodb-csharp Question?