9/05/2006

同一組 DB table ,不同關係的設定方式

應該很多人有類似的想法吧?
今天兩個 tables ,他們的關聯不只一種
但是 Active Record 預設只有一種關聯性

舉個例子:
User 這個 table 跟 Email 這個 table 是 1:m 的關係
email 這個欄位有 user_id -> 代表這個信的收信人是誰
還有 sender_user_id -> 代表這個信的寄件人是誰
今天如果使用 ActiveReocrd 的預設方式




class User < ActiveRecord::Base

has_many :emails

end

class Email < ActiveRecord::Base

belongs_to :user

end

這樣只能使用 User.emails 代表這個人有多少信件要收
但是如果我們也想用 ActiveRecord 做到 User.send_emails 這樣
代表這個人有多少信件要寄呢?

我們可以使用 Virtual Model 來解決(我自己取的名字)





class User < ActiveRecord::Base

has_many :emails

has_many :send_emails , :foreign_key => 'sender_user_id'

end



class Email < ActiveRecord::Base

belongs_to :user

end



class SendEmail < Email

belongs_to :user , :foreign_key => 'sender_user_id'

end

如此就可以直接使用 User.messages還有User.send_messages
當然其實也可以用 Database 的 View Table 來解決

沒有留言: