When I call EntityLoad does it load ALL the data in the table or just sets up a reference or something, because say if i do this:
<cfset test = EntityLoad("Table") />
and then do:
ArrayLen(test)
I get the number of rows in the database. If its doing that then it should be loading all the data, and that is really inefficent, say I have a table with 20x10^5 rows or something, it'll be horrible to load all data just to get the length of the table.