All files / dist/src/Query QueryOperator.js

0% Statements 0/9
100% Branches 0/0
0% Functions 0/3
0% Lines 0/9
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19                                     
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const _1 = require(".");
class QueryOperators extends _1.QuerySegment {
    get And() {
        this.stringValue = ' AND ';
        return this.Finialize();
    }
    get Or() {
        this.stringValue = ' OR ';
        return this.Finialize();
    }
    Finialize() {
        this.queryRef.addSegment(this);
        return new _1.QueryExpression(this.queryRef);
    }
}
exports.QueryOperators = QueryOperators;
//# sourceMappingURL=QueryOperator.js.map