In ColdFusion 9 I am serializing an ORM Entity. When doing this tho it's missing relational entities.
serializeJSON() method ColdFusion uses to convert complex objects into JSON notation. It doesn’t seem to work correctly on ORM objects. any object that had a property that was an array of other objects is not returned when using SerializeJSON on ORM objects!
Has anyone tackled this sort of issue before? How did you handle it?
Thanks.
Update.
Issue resolved! This is not a bug you have to set remotingFetch to true! By default it is set to false for properties with one-to-one, one-to-many, many-to-one, or many-to-many relationships. I am no using Flash remoting but it seems you have to do this AJAX calls too.
lazy="true"on your relationship. I would try either changing that attribute to false, or callinggetAccount()on the object before serializing. Let me know if that works and I'll post it as the answer. – Dan Short Sep 26 '11 at 17:05