I have a class with a property that uses the formula:
CONCAT(code, CAST(id AS CHAR))
When I insert an instance with
_session.Save(x);
The formula is still null, but the identifier has been updated.
How can I make sure the formula is updated when I insert something?
source share