Is it possible to use non-existing property in Hibernate xml mapping?
<property name="nonExisting" type="java.lang.String" column="nonExisting"/>
So I can have nonExisting
column in my DB, but not in my class. I also need to use Hibernate criteria with that column.