Specifies the field to join and the additional table and field name to which it is joined.
Namespace: DatabaseObjectsAssembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0
Syntax
C# |
---|
public TableJoinAttribute(
string strJoinFieldName,
string strJoinToTableName,
string strJoinToFieldName
) |
Visual Basic |
---|
Public Sub New ( _
strJoinFieldName As String, _
strJoinToTableName As String, _
strJoinToFieldName As String _
) |
Visual C++ |
---|
public:
TableJoinAttribute(
String^ strJoinFieldName,
String^ strJoinToTableName,
String^ strJoinToFieldName
) |
Parameters
- strJoinFieldName
- Type: System..::..String
The name of the field in the collection's primary table that is to be joined to another table.
- strJoinToTableName
- Type: System..::..String
The name of the table to join with the collection's primary table.
- strJoinToFieldName
- Type: System..::..String
The name of the field in the table which is to be joined with the collection's primary table.
See Also