Amir Pashazadeh
Amir Pashazadeh
Well I like to contribute, but not sure how to implement it. I am thinking of a `ConverterFactory`, but not sure how to implement it of the Record type has...
I digged more in Spring Data JPA sources in class `org.springframework.data.jpa.repository.query.NamedQuery`, method `Class getTypeToRead(ReturnedType returnedType)` just returns tuple when ReturnType is an interface, and not a record, so now Hibernate...
A mismatch between using native-named-queries and native-queries within annotation, when I put the query text in annotation, the return type is now a `jakarta.persistence.Tuple` (it occurs for annotation parameter `nativeQuery...
In Hibernate you can `unwrap` a `jakarta.persistence.Query` to `org.hibernate.Query` and then call `setTupleTransformer(NativeQueryConstructorTransformer)`, it converts query result to an object using constructor arguments (which is suitable for `Record`s). But as...