operator | method

MssqlCondition operator |(
  1. MssqlCondition other
)

(this OR other).

Implementation

MssqlCondition operator |(MssqlCondition other) =>
    MssqlJunction('OR', <MssqlCondition>[this, other]);