Hi, I've been trying to make with Sequel something similar to http://asciicasts.com/episodes/163-self-referential-association (it's based on my ramaze/sequel clone of flitter).
I've been trying to code it like this: class Friendship < Sequel::Model many_to_one :user many_to_one :friend, :class => :User, :key => :friend_id end class User < Sequel::Model one_to_many :friendships one_to_many :friends, :through => :friendships end When I try to select a created User, and I perform this User[1].friends, I end up with: "NameError: uninitialized constant Friend" Basically, it was expecting the alias to work (friends are actually users), so I was not expecting to have to declare the class Friend. Is there a way to properly code this in Sequel ? Thanks in advance. Christian -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en.
