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

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

    Parameters

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