ORM many-to-many code example difference

2011-08-09 Thread Glyn Jackson
Can someone tell me the difference between this... property name=POIs fieldtype=many-to-many fkcolumn=actionID cfc=pPOI type=array singularname=POI linktable=pLinkActionsToPOIs; VS property name=POIs singularname=POI fieldtype=many-to-many cfc=pPOI fkcolumn=actionID

Re: ORM many-to-many code example difference

2011-08-09 Thread Andrew Scott
The only difference is that the first is returning an array, which I think is the default from memory. And the second is using the inversejoin which is saying which column to join on, not really used it but the docs can explain that it greater detail What is your exact problem or question? On

Re: ORM many-to-many code example difference

2011-08-09 Thread Glyn Jackson
The only difference is that the first is returning an array, which I think is the default from memory. And the second is using the inversejoin which is saying which column to join on, not really used it but the docs can explain that it greater detail What is your exact problem or question? On

Re: ORM many-to-many code example difference

2011-08-09 Thread Andrew Scott
It wont be performance as an issue, as each property is how you want to reference the data and what/how it is returned. So if you have a type of array then it will be returned as an array, type of struct returns it as a struct. Not used the inversejoincolumn before so I am assuming that this says

Re: ORM many-to-many code example difference

2011-08-09 Thread Glyn Jackson
It wont be performance as an issue, as each property is how you want to reference the data and what/how it is returned. So if you have a type of array then it will be returned as an array, type of struct returns it as a struct. Not used the inversejoincolumn before so I am assuming that this says