[前][次][番号順一覧][スレッド一覧]

rails:866

From: Kazuhiro Yoshida <moriq@m...>
Date: Tue, 10 Jan 2006 17:09:37 +0900
Subject: [rails:866] Re: ActiveRecordのfindのconditionsに親テーブルを使うには?

もりきゅうです。

manabu togawa wrote:
> class Comment < ActiveRecord::Base
>   belongs_to :user
> end class
>  
> のようなクラスがある場合に
>  
> Commentクラスからfind(:all, :conditions => "user.name =boo ")
>  
> のように親テーブル(usrs)のnameを条件としたcommentの一覧を取得したいと 
> 思っています。

find(:all, :conditions => "user.name =boo ", :include => :user)
でいけると思います。

--
ML: rails@r...
使い方: http://QuickML.com/

[前][次][番号順一覧][スレッド一覧]

   @   863 2006-01-10 02:08 [togawamanabu@g...   ] ActiveRecordのfindのconditionsに親テーブルを使うには?
->     866 2006-01-10 09:09 ┗[moriq@m...          ]                                       
   @   869 2006-01-10 11:36  ┗[togawamanabu@g...   ]                                     
       870 2006-01-10 13:03   ┗[shibano@a...        ]