3 Replies Latest reply: Sep 19, 2006 8:32 AM by Newsgroup_User RSS

    Q of Q in a cfc

    Dan Bracuk Community Member
      I have coded a workaround to solve my specific problem, but I was wondering if I could do this without the workaround.

      My cfc has this in it:
      <cfproperty name="PrimarySurgeons" type="query">

      Eventually I populate this query and want to use it in a q of q.

      This crashes;
      select Property.PrimarySurgeons.fieldname, etc

      This also crashes
      select Property.PrimarySurgeons["fieldname"], etc

      This was my workaround
      var tempquery = Property.PrimarySurgeons;

      Is there a syntax that would have worked?