Azavea.Open.DAO.Criteria.Joins.GreaterJoinExpression.Flip C# (CSharp) Method

Flip() public method

For some implementations, it's simpler to only implement one-sided joins. So to handle right (or left) joins, you want to flip the criteria so the right and left daos are swapped and you can do a left (or right) join instead.
public Flip ( ) : IJoinExpression
return IJoinExpression
        public override IJoinExpression Flip()
        {
            return new LesserJoinExpression(RightProperty, LeftProperty, _trueOrNot);
        }