Re: [Hibernate] New HQL features in CVS

2005-04-04 Thread Max Rydahl Andersen
This stuff is really nice and the tools will definitly benefit from it ,) but just to be a nag: since HQL<>Criteria why don't we add ResultTransformer to the Query facility ? /max map creation from specified key and value columns (either key,value or aliased) -1, I don't see this as a general ne

RE: [Hibernate] New HQL features in CVS

2005-04-04 Thread Gavin King
>> map creation from specified key and value columns (either key,value or aliased) -1, I don't see this as a general need; you can always use a criteria query with a resultTransformer (I'm currently resisting the idea of adding ResultTransformer to the HQL facility). >> plugable loaders Well, b

RE: [Hibernate] New HQL features in CVS

2005-04-04 Thread Cameron Braid
Fantastic - That is exactly what I want :) I'd also like to see this : map creation from specified key and value columns (either key,value or aliased) select new keyedmap ( order.id as key, order as value) from Order order select new keyedmap ( order.id, order ) from Order order However th