Another ColdFusion 9 enhancement verified and suppose to be fixed

One of the things that I continue to preach is that we as developers need our tools to be user friendly, and require less code to do our jobs with.

So when we got tags like entityDelete, the one thing that I hated the most was that this tag requires a single object.

Yet when this was discussed many people stated that the way this should work is like the following.

entityDelete(array) -> automatically loop over array and run
entityDelete(obj) -> just delete that object

This was marked as suppose to have been fixed, yet it appears this is not the case. The work around is again to write more code to loop over and delete each one individually.