SetFields method of MongoCursor.
Method FindOne just wrapper around MongoCursor and internally it looks so:
public virtual TDocument FindOneAs<TDocument>() {
return FindAllAs<TDocument>().SetLimit(1).FirstOrDefault();
}
If you want add Exclude Fields functionality to it you can simply add extention method for MongoCollection :
public static class MongodbExtentions
{
public static T FindOne<T>(this MongoCollection collection,
params string[] excludedFields)
{
return collection.FindAllAs<T>().SetLimit(1)
.SetFields(excludedFields)
.FirstOrDefault();
}
}
And use it like this:
var user = Users.FindOne<User>("Password");