ColumnSet.AllColumns Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.