db.collection<model>.Find(Filter)

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);