खोज विधि का दूसरा तर्क परिणाम प्रकार है। नीचे के रूप में प्रयास करें।
FindIterable<TDocType> tDocTypeList = dbCollection.find(filter, TDocType.class);
प्रक्षेपण के लिए अपडेट
FindIterable<TDocType> tDocTypeList = dbCollection.find(filter, TDocType.class).projection(outputQuery);
फ़िल्टर जोड़ने के लिए अपडेट करें
List<Bson> filters = new ArrayList<>();
for (Map.Entry<String, Object> entry : query.getParams().entrySet()) {
// this is where its building the query
if (some condition){
filters.add(Filters.eq(entry.getKey(), entry.getValue()));
}
if (some other condition){
filters.add(Filters.in(entry.getKey(), query.getValues()));
}
}
FindIterable<TDocType> docType = dbCollection.find(Filters.and(filters));