We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You need to mark them to be ignored during insert or update operations, e.g. using ColumnAttribute attribute:
ColumnAttribute
public class MyEntity { [Column(SkipOnInsert = true, SkipOnUpdate = true)] public int CalculatedField { get; set; } }