public enum JoinType : System.Enum
public enum JoinType : System.Enum
Member | Value | Description |
---|---|---|
FullOuter | 3 | This is a Full Outer join. Full Outer joins include rows in either Data Object that do not have a match. Do not use for MySQL Data Sources. |
Inner | 0 | This is an Inner join. Inner joins only include rows of the From Object that have a match in the To Object and vice versa. |
LeftOuter | 1 | This is a left outer join. Left Outer joins include rows of the From Object that do not have a match in the To Object but not vice versa. |
RightOuter | 2 | This is a right outer join. Right Outer joins include rows of the To Object that do not have a match in the From Object but not vice versa. |
System.Object
System.ValueType
System.Enum
WebReports.Api.Reports.JoinType