How to update formula property after pasting in free nhibernate

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?

+4
source share

Source: https://habr.com/ru/post/1347228/


All Articles