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 columns of a table or record. (Not recommended)
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
true
to retrieve all columns, otherwise false
to retrieve only specified columns.
- Attributes
Remarks
We strongly discourage returning all columns in a table. Returning all columns will make your applications run slower and may cause timeout errors. You should specify the minimum number of columns to retrieve with your data.