Hi,
I tried to insert a new record with some NULL values, and I got an exception since those fields are NN.
So I altered the table by setting the problematic fields to be nullable, WITHOUT regenerating the classes.
I used the old entity-class to perform the insertion, and it succeeded.
This brought me to conclude that the adapter does not consult the persistence-info for this NULL issue before performing the query in th DB, and I wonder - why? Wouldn't it be more efficient to consult (maybe not by default since it can be dangerous, however letting the developer to decide seems like a good solution to me)?