SupportedJoinOperators Enum

Definition

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

This enumeration supports a bitwise combination of its member values.

[System.Flags]
public enum SupportedJoinOperators
Inheritance
SupportedJoinOperators
Attributes

Fields

Name Value Description
None 0

The data source does not support join queries.

Inner 1

The data source supports inner joins.

LeftOuter 2

The data source supports left outer joins.

RightOuter 4

The data source supports right outer joins.

FullOuter 8

The data source supports full outer joins.

Remarks

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

Applies to

Toode Versioonid
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also