You want to use IFindFluent.Find , and then use IFindFluent.Projection and Builders.Projection.Exclude to exclude this property:
var query = collection. Find(filter). Project<Document>(Builders<Document>.Projection.Exclude(doc => doc.HugeBlob)); var results = await query.ToListAsync();
source share