dotConnect for SQL Server Documentation
Devart.Common Namespace / SelectColumn Class / SelectColumn Constructor / SelectColumn Constructor(String,String,String,String)
The schema that the column belongs to.
The table or view that the column belongs to.
The name of the column or expression text.
The column alias.

In This Topic
    SelectColumn Constructor(String,String,String,String)
    In This Topic
    Creates and initializes new instance of SelectColumn with the specified schema name, table name, column name (expression text) and an alias.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal schema As String, _
       ByVal table As String, _
       ByVal name As String, _
       ByVal alias As String _
    )
    public SelectColumn( 
       string schema,
       string table,
       string name,
       string alias
    )

    Parameters

    schema
    The schema that the column belongs to.
    table
    The table or view that the column belongs to.
    name
    The name of the column or expression text.
    alias
    The column alias.
    See Also