查找祖先将列设置为特定值的记录

时间:2016-09-20 19:54:32

标签: ruby-on-rails activerecord

Rails 3.2

在我的models / ticket.rb中,我有:

belongs_to :ticket_profile

在我的models / ticket_profile.rb中,我有:

has_many :tickets
attr_accessible :ticket_id

在我的ticket_profile模型中,我有:

attr_accessible :type

如何对ticket_profile类型为特定值的故障单进行搜索,例如:" flowers"。

1 个答案:

答案 0 :(得分:0)

您可以使用where

TicketProfile.where(:type => 'flowers').tickets