Enum JoinBehaviour
Specifies the behavior for a specific join between two tables.
Namespace: Venflow.Enums
Assembly: Venflow.dll
Syntax
public enum JoinBehaviour : byte
Fields
Name | Description |
---|---|
FullJoin | Returns all records when there is a match in either left or right table |
InnerJoin | Returns records that have matching values in both tables |
LeftJoin | Returns all records from the left table, and the matched records from the right table |
RightJoin | Returns all records from the right table, and the matched records from the left table |