Skip to content

Instantly share code, notes, and snippets.

@rafaeldalsenter
Created July 8, 2021 13:22
Show Gist options
  • Save rafaeldalsenter/a6334074ce3e60c10ce0b60025d170d5 to your computer and use it in GitHub Desktop.
Save rafaeldalsenter/a6334074ce3e60c10ce0b60025d170d5 to your computer and use it in GitHub Desktop.
Mongo query: C# Example
using MongoDB.Driver;
var client = new MongoClient("mongodb://Ip1,Ip2");
var ret = client.GetDatabase("example")
.GetCollection<ExampleCollection>("example_collection");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment