Exago .NET API Documentation
JoinType Enumeration
WebReports.Api.Reports Namespace : JoinType Enumeration
The type of join used in the Type Property of the Join Class.
Syntax
public enum JoinType : System.Enum 
Members
MemberValueDescription
FullOuter3This 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.
Inner0This is an Inner join. Inner joins only include rows of the From Object that have a match in the To Object and vice versa.
LeftOuter1This 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.
RightOuter2This 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.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         WebReports.Api.Reports.JoinType

See Also

Reference

WebReports.Api.Reports Namespace