码迷,mamicode.com
首页 > 其他好文 > 详细

mongoid模糊查询

时间:2014-06-26 23:58:29      阅读:742      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   name   

 

How to use the like query with Mongoid . Basically I wanted something like the familiar SQL query:

SELECT * FROM Apps WHERE name LIKE ‘%aaa%’

 

I couldn’t find anything similar in the Mongoid documentation, but according to the MongoDB documentation you can do regex searches.

Apps.where(name: /aaa/)

Package.where(title: /博影/).first title
= "博影" Package.where(title: /#{title}/)

注意这行语句在vim里会被误导,vim会把#以后的当作注释,忽略这一点啊.不影响执行效果

现在觉得mongoid很优雅啊,哈哈.

mongoid模糊查询,布布扣,bubuko.com

mongoid模糊查询

标签:style   class   blog   code   color   name   

原文地址:http://www.cnblogs.com/iwangzheng/p/3807629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!