ColumnBaseDbReadOnly Property

Determines if this column is only read from the database but not saved to it.

Definition

Namespace: Firefly.Box.Data.Advanced
Assembly: Firefly.Box (in Firefly.Box.dll) Version: debug-master-v:33791
C#
public bool DbReadOnly { get; set; }

Property Value

Boolean

Remarks

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

See Also