Christian Beikov
Christian Beikov
Fixed via https://github.com/Blazebit/blaze-persistence/pull/2007
Looks like a bug, yes. What are you trying to achieve here? Can't you instead filter against `ProvidersAffectToLeg#rowid` directly?
If you want to filter the collection, why not just add a `@AttributeFilter(ContainsFilter.class)` on `KittenView#getName()` and activate that via `addAttributeFilter("kittens.name", "e")`?
Can you please post the generated SQL?
Can you translate the error message to English maybe? Also, Oracle 11 is not supported anymore and Blaze-Persistence does not provide support for that version either. Please upgrade to the...
Looks like you figured how to do this already. Write a custom type like you did an leverage the converter in it to construct the object from the string. The...
Thanks
If you think about a `MultiTenantConnectionProvider` which can delegate it's work to multiple datasource, it is highly desirable to make it a bean to inject datasources into it. I just...
Hi, you can use a parameter in the string e.g. `@Limit(limit = ":answerLimit", order = {"helpfulCount desc"})` and bind that parameter on `EntityViewSetting` with `addOptionalParameter("answerLimit", 5)`
Please share the generated SQL queries.