是否可以使用 postgres_ext 使用链式方法执行 NOT 类型查询?
rules = Rule.where.overlap(:tags => ["foo"])
基本上想和上面的相反。谢谢!
是否可以使用 postgres_ext 使用链式方法执行 NOT 类型查询?
rules = Rule.where.overlap(:tags => ["foo"])
基本上想和上面的相反。谢谢!
在常规活动记录中,您可以.where.not
按照本文所述使用:https ://robots.thoughtbot.com/activerecords-wherenot但是查看 postgres_ext 的源代码我不知道它是否在该库中定义。您可能能够以使用本机活动记录方法的方式构建查询。