Konstantin Krivopustov
Konstantin Krivopustov
See https://github.com/jmix-framework/jmix/issues/4431
Reportedly, if using the "List of entities" parameter type, the whole list of entity instances is loaded from the database when the parameters dialog is opened. Check this and try...
Currently `EntityChangedEvent` is not sent (and perhaps other relevant framework features don't work) when nested entity is removed by `@OneToMany(..., orphanRemoval = true)` This complicates usage of data repositories for...
### Environment Jmix version: 2.7.1 ### Bug Description If a root entity includes a reference in its InstanceName, the reference's nested references are not loaded lazily. Test model: ```java @JmixEntity...
See [forum topic](https://forum.jmix.io/t/excelexport-extracting-all-records-for-entities-with-composite-key/7185) for motivation.
At least with the following constraints: - Single-table inheritance - Only local attributes (references could be loaded lazily) With these limitations, the following code that works directly through EclipseLink's EntityManager...
### Environment Jmix version: 2.7.1 ### Bug Description In MySQL 8.4 `MANUAL` becomes a reserved word: https://dev.mysql.com/doc/mysqld-version-reference/en/keywords-8-4.html#keywords-8-4-detailed-M So when executing changelogs, we get the error: `SQL Error [1064] [42000]: You...
See [forum topic](https://forum.jmix.io/t/auditoraware-implementaion/4132) Now to customize the user fields you have to write ugly type cast like `((AuditConversionServiceImpl) auditConversionService).addConverter(...)`. Moreover, both `AuditConversionService` and `AuditConversionServiceImpl` are marked with `@Internal`.