Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SupportedJoinOperators Enumeration

 

Specifies what types of Transact-SQL join statements are supported by the data source.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

[FlagsAttribute]
public enum class SupportedJoinOperators

Member nameDescription
FullOuter

The data source supports full outer joins.

Inner

The data source supports inner joins.

LeftOuter

The data source supports left outer joins.

None

The data source does not support join queries.

RightOuter

The data source supports right outer joins.

These members are flags that allow a bitwise combination of the join capabilities.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft