GroupBy Clause

Posts   
 
    
skhnsb
User
Posts: 4
Joined: 15-Jun-2006
# Posted on: 15-Jun-2006 18:57:10   

Hello, I am trying to use the GroupBy clause on a view and I am not seeing the ResultsetFields class on my intellisense.

I am guessing I missed something when I generated the code but not sure what. Can you help?

I am using self-servicing to generate the code and using 1.0.2005.1 Final.

Thanks!

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39928
Joined: 17-Aug-2003
# Posted on: 15-Jun-2006 19:18:43   

The ResultsetFields are in the HelperClasses namespace, so you should add: using yourrootnamespace.HelperClasses;

or:

Imports yourrootnamespace.HelperClasses

to the top of your codefile.

Frans Bouma | Lead developer LLBLGen Pro
skhnsb
User
Posts: 4
Joined: 15-Jun-2006
# Posted on: 15-Jun-2006 22:12:12   

Thanks!