For example: I have COLUMN_PK column of type int identity(1,1) and column COLUMN_NUM pf type int, how could I define default value for COLUMN_NUM - value of COLUMN_PK?
So if I have entity with not specified COLUMN_NUM it will be populated with generated value from COLUMN_PK. But if COLUMN_NUM is specified its value will be used.
Use computed column and a scalar function as default value.