If I have an array of entities, whats the easiest way of deleting the entire array of entities (or to put it this way, the entire ORM table)? I have:
<cfset allUsers = EntityLoad("User", {}, false)/>
Now to delete all the entities, would I use some sort of a loop? If so, how do I access individual entity primary keys within? I tried:
<cfset userTemp = EntityLoad("User", allUsers[i].User.userID, true) />
but that didn't work...