↧
Answer by Pascal Thivent for JPA/EclipseLink - Calculated column
What I'm trying to do is to create a calculated/computed column.JPA doesn't provide standard support for this. Some providers have specific extensions like Hibernate's @Formula but EclipseLink doesn't...
View ArticleJPA/EclipseLink - Calculated column
I'm trying to learn JPA. I created a simple entity class. This entity has 3 columns: ID, NAME, NUMBER_A. It's working fine: I can persist, update and delete without problems.What I'm trying to do is to...
View Article