Check this link if you have to use legacy driver : Getting Started - v1.11
instead of Builders, filtering is done with Query class
var query = Query<Entity>.EQ(e => e.Id, id);
var entity = collection.FindOne(query);
Check this link if you have to use legacy driver : Getting Started - v1.11
instead of Builders, filtering is done with Query class
var query = Query<Entity>.EQ(e => e.Id, id);
var entity = collection.FindOne(query);