SupportedJoinOperators Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies what types of Transact-SQL join statements are supported by the data source.
This enumeration supports a bitwise combination of its member values.
public enum class SupportedJoinOperators
[System.Flags]
public enum SupportedJoinOperators
[<System.Flags>]
type SupportedJoinOperators =
Public Enum SupportedJoinOperators
- Inheritance
- 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.