JoinOperator 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.
Contains the possible values for a join operator in a LinkEntity.
public enum class JoinOperator
[System.Runtime.Serialization.DataContract(Name="JoinOperator", Namespace="http://schemas.microsoft.com/xrm/2011/Contracts")]
public enum JoinOperator
[<System.Runtime.Serialization.DataContract(Name="JoinOperator", Namespace="http://schemas.microsoft.com/xrm/2011/Contracts")>]
type JoinOperator =
Public Enum JoinOperator
- Inheritance
-
JoinOperator
- Attributes
Fields
Name | Value | Description |
---|---|---|
Inner | 0 | Restricts results to rows with matching values in both tables. |
LeftOuter | 1 | Includes results from the parent row that don't have a matching value. |
Natural | 2 | Only one value of the two joined columns is returned if an equal-join operation is performed and the two values are identical. |
MatchFirstRowUsingCrossApply | 3 | A variant of |
In | 4 | A variant of |
Exists | 5 | A variant of |
Any | 6 | This join operator is used to filter values on related records. Restricts results to parent rows with any matching rows in the related table. |
NotAny | 7 | This join operator is used to filter values on related records. Restricts results to parent rows with no matching rows in the related table. |
All | 8 | This join operator is used to filter values on related records.
Restricts results to parent rows where rows with matching
LinkEntity.LinkToAttributeName
column values exist in the related table, but none of those matching rows satisfy the
additional filters defined for this You need to invert the additional filters to find parent rows where every matching related table row satisfies some additional criteria. |
NotAll | 9 | This join operator is used to filter values on related records.
Restricts results to parent rows with any matching rows in the related table.
Despite the name, this link type is equivalent to |