ColumnSet.AllColumns Property

Definition

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.

Applies to