Skip to content

Commit

Permalink
sql: +<>
Browse files Browse the repository at this point in the history
  • Loading branch information
nmaguiar committed Sep 29, 2023
1 parent 57fb51e commit 15bf07a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions js/openaf.js
Original file line number Diff line number Diff line change
Expand Up @@ -7759,6 +7759,7 @@ AF.prototype.fromSQL2NLinq = function(sql) {
case ">" : _p = isOr ? (isNot ? "orNotG" : "orG") : (isNot ? "notG" : "g"); _r.where.push({ cond: _p + 'reater', args: [ _a.column, _b.value ]}); break
case "<=": _p = isOr ? (isNot ? "orNotL" : "orL") : (isNot ? "notL" : "l"); _r.where.push({ cond: _p + 'essEquals', args: [ _a.column, _b.value ]}); break
case ">=": _p = isOr ? (isNot ? "orNotG" : "orG") : (isNot ? "notG" : "g"); _r.where.push({ cond: _p + 'reaterEquals', args: [ _a.column, _b.value ]}); break
case "<>":
case "!=": _p = isOr ? (!isNot ? "orNotE" : "orE") : (!isNot ? "notE" : "e"); _r.where.push({ cond: _p + 'quals', args: [ _a.column, _b.value ]}); break
case "=" : _p = isOr ? (isNot ? "orNotE" : "orE") : (isNot ? "notE" : "e"); _r.where.push({ cond: _p + 'quals', args: [ _a.column, _b.value ]}); break

Expand Down

0 comments on commit 15bf07a

Please sign in to comment.