Specifies the type of join to apply between two tables.
Namespace:
ESRI.ArcGISExplorer.DataAssembly: ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.900 (2.0.0.900)
Syntax
| C# |
|---|
public enum TableJoinType |
| Visual Basic (Declaration) |
|---|
Public Enumeration TableJoinType |
Members
| Value | Member name | Description | |
|---|---|---|---|
| 0 | 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.
| |
| 1 | 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.
|

