Miroslav Oujeský

Results 2 comments of Miroslav Oujeský

There seems to be a workaround to annotate the `@EmbeddedId` field with `@MappedProperty(value = "", alias = "")`, i.e.: ``` @MappedEntity("some_table") public class SomeEntity { @EmbeddedId // workaround @MappedProperty(alias =...

Additionally, when mapping explicit query result to an entity class, the fields are mapped wrong as well ``` @JdbcRepository(dialect = Dialect.ANSI) public interface AnsiRepository extends PageableRepository { @Query("SELECT * FROM...