I am using LLBLgen version 2.5 with adapter,SQL server 2005 and Visual studio 2005 with C#
I want to use typlist for my reports but i dont know how to pass the filters.
heres what iam doing ...
UnupdatedTypedList records = new UnupdatedTypedList();
DataTable results = new DataTable();
IRelationPredicateBucket filter = new RelationPredicateBucket(TransactionsFields.Update != true);
new DataAccessAdapter().FetchTypedList(records,filter,results); ----but iam getting error over here...
Error 5 The best overloaded method match for 'SD.LLBLGen.Pro.ORMSupportClasses.DataAccessAdapterBase.FetchTypedList(SD.LLBLGen.Pro.ORMSupportClasses.IEntityFields2, System.Data.DataTable, SD.LLBLGen.Pro.ORMSupportClasses.IRelationPredicateBucket)' has some invalid arguments
after doing this then i want to attach it to the report
The typlist is basically taking out the unupdated record and showing a a report.
But iam stucked in the middle....please help me.