Hi,
I'm trying to query using Castle and return a strong-typed array or IList for later use in data binding, so from i read a ProjectionQuery would be my best choice, but how would i transform this to a projection query:
HqlBasedQuery hql = new HqlBasedQuery(typeof(TrackingRule),
QueryLanguage.Hql,
"SELECT AC.TrackingRule FROM Account_Rule as AC WHERE AC.Account.ID = " + 63);
Thanks In Advance
Yehia A.Salam