ColumnSet.AllColumns Property

Definition

Gets or sets whether to retrieve all the attributes of a record.

public:
 property bool AllColumns { bool get(); void set(bool value); };
[System.Runtime.Serialization.DataMember]
public bool AllColumns { get; set; }
[<System.Runtime.Serialization.DataMember>]
member this.AllColumns : bool with get, set
Public Property AllColumns As Boolean

Property Value

Boolean

Type: Booleantrue to specify to retrieve all attributes; false to to retrieve only specified attributes.

Attributes

Remarks

You should avoid retrieving all columns in a query result because of the impact on a subsequent update of records. In an update, this will set all field values, even if they are unchanged, and often triggers cascaded updates to child records.

Applies to