我在Sequel中创建了一个表视图,并将其放入一个文件中:

require 'db_manip'
Db_manip::DB.create_view(:bn_view,'SELECT ...')

为了遵循“胖模型瘦控制器”的实践,我想为db_views.rb创建一些方法。

最佳答案

你试过了吗:

class BnView < Sequel::Model(:bn_view)
  def foo
    # implement your method here
  end
end

关于ruby - 如何在Sequel中为表格 View 创建方法?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8623210/

10-12 06:30