Exago .NET API Documentation
Type Property (Join)
Example 
WebReports.Api.Reports Namespace > Join Class : Type Property
Specify whether rows from either Entity (Data Object) that do not have a match should or should not be included.
Syntax
public JoinType Type {get; set;}

Property Value

The type of join, from the JoinType Enumeration.
Remarks
Equivalent to the Join Type setting for Joins in the Admin Console.
Example
Create a new Left Outer join between fromEntity and toEntity.
Join newJoin = new Join()
{
	EntityFromName = fromEntity.Name,
	EntityToName = toEntity.Name,
	Type = JoinType.LeftOuter,
	RelationType = 1,
	Weight = 0
};
See Also

Reference

Join Class
Join Members