This document is archived and information here might be outdated.  Recommended version.


IRelQueryTableName.LeftOuterJoin Property (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (GeoDatabase)  

IRelQueryTableName.LeftOuterJoin Property

Indicates if the type of join will be a left outer join.

[Visual Basic .NET]
Public Property LeftOuterJoin As Boolean
[C#]
public bool LeftOuterJoin {get; set;}
[C++]
HRESULT get_LeftOuterJoin(
  VARIANT_BOOL* LeftOuterJoin
);
[C++]
HRESULT put_LeftOuterJoin(
  VARIANT_BOOL LeftOuterJoin
);
[C++]

Parameters LeftOuterJoin [out, retval] LeftOuterJoin is a parameter of type VARIANT_BOOL LeftOuterJoin [in] LeftOuterJoin is a parameter of type VARIANT_BOOL

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

A left outer join is performed if LeftOuterJoin is set to True, otherwise a left inner join is performed. See IRelQueryTableInfo::JoinType for more information.

See Also

IRelQueryTableName Interface