Hi
I can't execute a basic count aggregate query as shown on the susonic website like so
SubSonic.Where w = new SubSonic.Where();
w.ColumnName = "categoryID";
w.ParameterValue = "1";
Query.GetCount("products", "productID", w);
My query object doesnt have a getCount method. My query class has 4 methods only. I've just downloaded the latest subsonic code and updated the subsonic reference in my visual studio project but this method still does not exist
thanks a lot
andrea