spring-data-mongodb
spring-data-mongodb copied to clipboard
Could I ask why ReactiveSpringDataMongodbQuery is private?
Could I ask why ReactiveSpringDataMongodbQuery is private? I want to use it like below. Flux<Person> result = new ReactiveSpringDataMongodbQuery<>(operations, Person.class).where() .join(person.coworker, QUser.user).on(QUser.user.username.eq("user-2")).fetch();
This is because we do not want it to be used by the application code directly. What's your motivation, why do you want to use ReactiveSpringDataMongodbQuery?
I am sorry. I am not familiar with spring-data-mongodb. I want to make complex query using reactivemongodb and querydsl. Which method should be used instead of this code?
We currently only provide Querydsl usage if you use Spring Data repositories. We do not yet support (see #2994) Querydsl usage with MongoOperations/ReactiveMongoOperations only.