我有以下关系
class User
has_many :relationships
has_many :friends, :through => :relationships, -> select: 'friends.*, relationships.weight', order: 'weight DESC'
当我升级到 Rails 4 时,我收到以下警告:
DEPRECATION WARNING: The following options in your Service.has_many :friends declaration are deprecated: :order,:select.
我应该如何解决这个问题?一般来说,Rails 4 是否有正在进行的参考?