문제

I am using db4o as DBMS and I have a question:

Is there any way to specify that I do not want to store a field from the model class in the database?

Something similar to @Transient annotation when working with relational databases?

도움이 되었습니까?

해결책

Just use the Java built in transient marker:

private transient String myField;

Or is there a special reason why you cannot use it?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top