dotConnect for PostgreSQL Documentation
Devart.Common Namespace / SelectColumnCollection Class / Add Method / Add(String,Boolean) Method
The name of the column that the SelectColumn object should represent.
Specifies whether the column name should be quoted.

In This Topic
    Add(String,Boolean) Method
    In This Topic
    Creates a new SelectColumn object with the name specified and adds it to the collection.
    Syntax
    'Declaration
     
    Public Overloads Function Add( _
       ByVal name As String, _
       ByVal quote As Boolean _
    ) As SelectColumn
    public SelectColumn Add( 
       string name,
       bool quote
    )

    Parameters

    name
    The name of the column that the SelectColumn object should represent.
    quote
    Specifies whether the column name should be quoted.

    Return Value

    The SelectColumn object created.
    See Also