You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The JPA spec. allows for both field access (vie field reflection) and property access (via implied getXXX()/setXXX() methods) to be used to read/write Entity level properties. This switch occurs depending upon the use of the @id annotation (on a field, then field access / on a property, then property access). Kundera currently allows only field level access, but should probably allow both.
The text was updated successfully, but these errors were encountered:
I guess, that's why we have an issue open for this. Marking all open issues on wiki is some sort of redundancy, However i will have a note to mark it for next release.
The JPA spec. allows for both field access (vie field reflection) and property access (via implied getXXX()/setXXX() methods) to be used to read/write Entity level properties. This switch occurs depending upon the use of the @id annotation (on a field, then field access / on a property, then property access). Kundera currently allows only field level access, but should probably allow both.
The text was updated successfully, but these errors were encountered: