Christian Beikov

Results 516 comments of Christian Beikov

I believe Hibernate has a similar issue. The solution is to use property access i.e. use `@get:Id` etc. Maybe we can add an option to override the access method in...

As far as I can see from the query, there are multiple things at play here that lead to this poor query: 1. You are joining entites through foreign key...

You do understand that you only need `groupBy` if you actually also do aggregation e.g. use `SUM()`, `AVG()` etc., right? Apart from that, I would recommend you to formulate the...

Hi there. Thanks for such a detailed report and providing a sample app. I didn't yet look into it to deeply, but you seem to be missing the JAXRS-JSONB integration:...

>Actually, by using the blaze-persistence-integration-jaxrs-jsonb package, I got this error: Well, let's keep this issue for digging into the problem with JSONB. Good that it works for you with Jackson...

We already support select aliases for order by, yes. There are a few things for this we have to take care of though. The implicit group by generation should obviously...

`com.blazebit.persistence.impl.OrderByManager#buildOrderBy` is handling the rendering to aliases, but it's a bit involved 😅 You'd have to implement something similar for `com.blazebit.persistence.impl.GroupByManager#buildGroupBy`

Sorry, no ETA yet, but you can look into it if you want. I guess a good start would be to express the expectations in a draft PR as tests...

Just querying them like you showed might not be a big problem, but how do you expect to be able to filter properties? Implicit downcasting was removed in 1.2.0-Alpha2 and...

Hi @jcputney, would you mind sharing your use case? I'm kind of unsure what this would be useful for in Blaze-Persistence since people can just use plain HQL for these...