ArcGIS Explorer Component Help |
TableJoinType Enumeration |
See Also |
Specifies the type of join to apply between two tables.
Namespace:
ESRI.ArcGISExplorer.DataAssembly: ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)
Syntax
C# |
---|
public enum TableJoinType |
Visual Basic (Declaration) |
---|
Public Enumeration TableJoinType |
Members
Member name | Description | |
---|---|---|
KeepAllOriginRows |
The joined table will have all records from the origin table irrespective of whether a matching record is
found in the destination table. Unmatched records will contain nullNothingnullptra null reference (Nothing in Visual Basic) values. In database
terminology this is equivalent to a left-outer join.
| |
KeepOnlyMatchingRows |
The joined table will only contains matching records. Unmatched records will be absent. In database
terminology this is equivalent to a left-inner join.
|