why would it be a 'two way has many'
an order only has 1 creator right?
class Order < ActiveRecord::Base belongs_to :creator, :class_name => 'Employee', :foreign_key => 'created_by' ... end
then you could do:
order.creator.username
Frank J. Mattia wrote: