Is it possible to add a transient field to SORM?

77 Views Asked by At

I was wondering if it would be possible to have a field in a class that is not beeing mapped by SORM. I tried to add a @Transient annotation but ist was ignored.

I this part of SORM's paradigms to not do so?

1

There are 1 best solutions below

2
On

It's impossible. However, since I don't see how anyone could benefit from such a feature, I suspect you're missing something essential about concepts utilized in SORM, such as operating on immutable data structures only, the idiomatic "absence" of nulls and stuff like that.