I've searched the world over and can't seem to find the answer to this.
How do I do this in C#:
// retrieve ssn field for documents where last_name == 'Smith':
db.users.find({last_name: 'Smith'}, {'ssn': 1});
Thanks!
To include:
.SetFields(Fields.Include("first_name", "last_name"));
To exclude fields:
.SetFields(Fields.Exclude("SSN","Salary"));
To do both:
.SetFields(Fields.Include("first_name", "last_name").Exclude("SSN","Salary"));
Note that you can now use a (type/refactoring)-safe version:
usersCollection.FindAllAs<User>()
.SetFields(Fields<User>.Include(user => user.FirstName,
user => user.LastName)
.Exclude(user => user.SSN)
.ToArray();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With