Thanx for you help.
Well, formulas are used to compute something, I thought.
I thought more of this expression:
Code:
@Entity
@Table(name="table_a")
...
@Column(name = "wastebasket", table="table_b", insertable = false, updatable = false)
Character getBasket() {...}
If I do this that way, hibernate tells me, that the secondary table "table_b" couldn't be found. This is NOT during runtime - it's during the initialization of hibernate.
I don't know how to tell hibernate how to join table_a and table_b.
Any ideas how to do this?
Thanx
Matthias