Exago .NET API Documentation
Join Constructor()
Example 
WebReports.Api.Reports Namespace > Join Class > Join Constructor : Join Constructor()
Create a new Join object.
Syntax
public Join()
Exceptions
ExceptionDescription
Exception is thrown if either EntityFromName or EntityToName is null.
Example
Create a new Join object. Both fromEntity and toEntity must not be null.
Entity fromEntity = api.Entities.GetEntity("campaigns");
Entity toEntity = api.Entities.GetEntity("Donations");

Join newJoin = new Join()
{
    EntityFromName = fromEntity.Name,
    EntityToName = toEntity.Name,
    Type = JoinType.LeftOuter,
    RelationType = 1,
    Weight = 0
};
See Also

Reference

Join Class
Join Members
Overload List