Specifies the type of join to apply between two tables.

Namespace:  ESRI.ArcGISExplorer.Data

Assembly:  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 nameDescription
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.

See Also