Re: How to strip off selected columns from a criteria object

Thomas Vandahl <[email protected]> Mon, 10 May 2010 22:02:02 +0200
Newsgroups gmane.comp.jakarta.turbine.torque.user
Message-ID <[email protected]>
Hi Dave,

[email protected] schrieb:
> Thanks for your reply. But what I need to deal with is that:
> I have a criteria object, with joins, and where clauses and a list of
> columns to select, and I need to remove all the selected columns in the
> criteria, both selected column, and as columns, so I can use OMPeer class to
> select a list of OM objects;

What happens if you do criteria.getSelectColumns().clear() or 
criteria.getAsColumns().clear(), respectively? Would that help?
(This is what is basically done in criteria.clear(), among other things)

Bye, Thomas.