internal override bool FilterDocument(BsonDocument doc)
        {
            // must deserialize documento into class T to apply _where func
            var obj = _mapper.ToObject <T>(doc);

            return(_where(obj));
        }