ColumnBaseDbReadOnly Property
Determines if this column is only read from the database but not saved to it.
Namespace: Firefly.Box.Data.AdvancedAssembly: Firefly.Box (in Firefly.Box.dll) Version: debug-master-v:33791
public bool DbReadOnly { get; set; }
Public Property DbReadOnly As Boolean
Get
Set
member DbReadOnly : bool with get, set
Property Value
Boolean When set to true, this column will be included while extracting data from the database (select statements) but will be excluded while updating data to the database (Update and insert statements).
Useful for database calculated columns, and views with inner selects