ComponentOne ADO.NET DataExtender
C1.C1DataExtender.2 Assembly / C1.C1DataExtender Namespace / ViewJoin Class / ViewJoin Constructor / ViewJoin Constructor(DataRelation,DataTable,String)
The DataRelation that the ViewJoin represents.
The DataTable that is represented by the ChildNode of the ViewJoin.
The alias that is used to reference ChildNode.

In This Topic
    ViewJoin Constructor(DataRelation,DataTable,String)
    In This Topic
    Creates a new instance of the ViewJoin class with the ChildNode representing the specified DataTable and referencing by the specified alias, where the join parameters corresponds to the specified DataRelation.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal childRelation As System.Data.DataRelation, _
       ByVal childTable As System.Data.DataTable, _
       ByVal childTableAlias As System.String _
    )
    public ViewJoin( 
       System.Data.DataRelation childRelation,
       System.Data.DataTable childTable,
       System.string childTableAlias
    )

    Parameters

    childRelation
    The DataRelation that the ViewJoin represents.
    childTable
    The DataTable that is represented by the ChildNode of the ViewJoin.
    childTableAlias
    The alias that is used to reference ChildNode.
    See Also