Dumb Question - GetFieldsInfo()

Posts   
 
    
gfunny
User
Posts: 20
Joined: 21-Apr-2005
# Posted on: 09-May-2005 21:19:53   

I am not getting access to the .GetFieldsInfo() method on my TypedList???

I see it being used on many samples. And I am including everything I need -

using SD.LLBLGen.Pro.ORMSupportClasses;
using SD.LLBLGen.Pro.DQE;
using SD.LLBLGen.Pro.DQE.SqlServer;

using xxx;
using xxx.HelperClasses;
using xxx.DaoClasses;
using xxx.CollectionClasses;
using xxx.FactoryClasses;
using xxx.EntityClasses;
using xxx.RelationClasses;
using xxx.TypedListClasses;
using xxx.ValidatorClasses;

here is an example of what I need:

OrderCustomerTypedList orderCustomer = new OrderCustomerTypedList(); IEntityFields2 fields = orderCustomer.GetFieldsInfo();

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39933
Joined: 17-Aug-2003
# Posted on: 09-May-2005 22:33:36   

Call orderCustomer.BuildResultset();

GetFieldsInfo() is for Adapter, you're using SelfServicing as it seems, according to the namespaces you've included.

If you want to use adapter, you've to select one of the Adapter's generator configurations when you press F7 simple_smile

Frans Bouma | Lead developer LLBLGen Pro