Azavea.Open.DAO.Criteria.Joins.GreaterJoinExpression.Flip C# (CSharp) Метод

Flip() публичный Метод

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
Результат IJoinExpression
        public override IJoinExpression Flip()
        {
            return new LesserJoinExpression(RightProperty, LeftProperty, _trueOrNot);
        }