Skip to content

Instantly share code, notes, and snippets.

@SinisterMinister
Last active December 20, 2015 11:59
Show Gist options
  • Save SinisterMinister/6127936 to your computer and use it in GitHub Desktop.
Save SinisterMinister/6127936 to your computer and use it in GitHub Desktop.
var user = ORM.factory('user');
user.where(function (user) {
user.where('id').between(1, 10);
}).orWhere(function (user) {
user.where('id').between(100, 200);
}).orWhere({
active: true,
banned: false
}).findAll();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment