sql >> データベース >  >> NoSQL >> MongoDB

上記のMongoDB3.3.0でのQueryBuilderとBasicDBObjectBuilderの使用法

    findメソッドの2番目の引数は、結果タイプです。以下のようにしてみてください。

    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));
    



    1. MongoDB .Netドライバー2.0プル(要素の削除)

    2. リバティプロファイルの下で、OSGI内のWebバンドル内のMongodbに@Resourceインジェクションを使用する

    3. MongoDB C#ドライバー2.0:MapReduceAsyncから結果を取得する方法

    4. socket.ioでRedisStoreを使用する例