将 Searchlogic 命名范围与 OR 相结合
这样的事情可能吗?
Product.price_greater_than(10000).or_tags_name_equals('luxury')
维基百科对此没有多大帮助...
我在维基百科上看到:
User.id_or_age_lt_or_username_or_first_name_begins_with(10)
=> "id < 10 OR age < 10 OR username LIKE 'ben%' OR first_name like'ben%'"
我真的不明白,“ben”到底是怎么出现的???有人可以帮忙吗?
Is something like this possible?
Product.price_greater_than(10000).or_tags_name_equals('luxury')
The wiki doesn't help much on this...
I saw in the wiki:
User.id_or_age_lt_or_username_or_first_name_begins_with(10)
=> "id < 10 OR age < 10 OR username LIKE 'ben%' OR first_name like'ben%'"
I really don't get that, how in the world did "ben" comes up??? could anyone help please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能是拼写错误。这应该有效:
Probably it was a typo. This should work: