Is there a "best practice" for using delegator.findList(...)?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Is there a "best practice" for using delegator.findList(...)?

Ruth Hoffman-2
Hello All:
Is there a best way to use delegator.findList to return all records for
an entity? For example, I want to do this SQL equivalent:

select * from content;

And I'm using this:

delegator.findList("Content", null,null,null,null,false);

[There are only a few records, so I don't need the list iterator. ]

TIA
Ruth