Displaying 1 result from an estimated 1 matches for "service_response".
2008 Nov 06
10
Rails 2.1.2 bug in include on has_many?
...inued efforts to port my rails 1.x app to Rails 2.1.2, I keep
running into what appear to be ActiveRecord bugs.
I am using an :include on a :has_many definition:
class Request < ActiveRecord::Base
has_many :service_types, :order=>''service_types.id ASC'',
:include=>:service_response
[...]
There''s no reason this wouldn''t be supported in Rails 2.1.2, is there?
Worked fine in Rails 1.2.6. In Rails 2.1.2, I fetch in a Request
objects, and then I try to call some_request.service_types, and I get an
exception.
Anyone run into this? Any ideas? That :include is r...