scope in Rails4_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > scope in Rails4

scope in Rails4

 2014/4/19 1:18:04  南京老油条  程序员俱乐部  我要评论(0)
  • 摘要:Rails4中scope推荐写法,代替原先的lambdascope:all_by_shop,->(store_id){where("(receiver_id=?ANDreceiver_type='User')OR(sender_id=?ANDsender_type='User')",store_id,store_id)}
  • 标签:rails

?

Rails4 中scope推荐写法,代替原先的lambda

?

class="ruby"> scope :all_by_shop, ->(store_id) {where("(receiver_id = ? AND receiver_type = 'User') OR (sender_id = ? AND sender_type = 'User')", store_id, store_id)}

?

?

上一篇: 变量互换值的速度分析 下一篇: C++的历史
发表评论
用户名: 匿名