我正在使用 jongo API -org.jongo.MongoCollection
是类。
我有对象ID列表并转换为相同ObjectId[]
并尝试查询如下
collection.find("{_id:{$in:#}}", ids).as(Employee.class);
The query throws the exception - "java.lang.IllegalArgumentException: Too
many parameters passed to query: {"_id":{"$in":#}}"
该查询无法按照 URL In Jongo, how to find multiple documents from Mongodb by a list of IDs中指定的方式工作
关于如何解决的任何建议?
谢谢。