Using latest Reactor from SVN, I think there's a bug in when it translates field aliases to column names: it's using the alias instead of the name attrib in the where clause.
Doug'll actually be down here at my house later today, so I'll see if I can get him to commit the fix. I got it working by opening reactor.base.AbstractGateway and changing line 632 from: <cfreturn arguments.Convention.formatFieldName(arguments.node.fieldAlias, arguments.node.objectAlias) /> to: <cfreturn arguments.Convention.formatFieldName(arguments.node.fieldName, arguments.node.objectAlias) /> Doug'll have final call as to whether this was the right place to do it, but it looks right to me. -Joe -- Get Glued! The Model-Glue ColdFusion Framework http://www.model-glue.com -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- Reactor for ColdFusion Mailing List [email protected] Archives at: http://www.mail-archive.com/reactor%40doughughes.net/ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
