In ColdFusion 9 I am serializing an ORM entity. When doing this, though, it's missing relational entities.
The serializeJSON() method ColdFusion uses to convert complex objects into JSON notation 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.
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