是否可以在 Lotus::Model Repository 中执行以下查询?
def active
query.where("publish_at >= #{Date.today}")
end
在 Lotus::Model 使用的 Sequel 中,您可以执行上述操作,也可以像这样传递一个块
where{publish_at >= Date.today}
这在 Lotus 中似乎是不可能的,因为conditions
内部变量是一个Set
需要键和值的变量。我很想知道是否有其他人已经解决了这个问题或解决了这个问题。