node-persist
node-persist copied to clipboard
whereIn only works after a using
For example can't do User.whereIn("name", ["bob", "sally"]).all
Have to do User.using(conn).whereIn("name", ["bob", "sally"]).all