我正在实例化查询对象,如下所示,执行查询时是否可以指定排序规则?
AbstractMongodbQuery query = new SpringDataMongodbQuery<>(mongoOps, clazz, collectionName);
query.where(predicate) // predicate has the search criteria like collectionName.fieldName.eq('Test')
query.fetch()
现在,当搜索发生在fieldName上时,我想指定不区分大小写的排序规则,以便它在 Test 或 test 或 TEST 上进行搜索。 ...