No overload method 'GetMulti' takes 1 arguments

Posts   
 
    
zirano
User
Posts: 2
Joined: 04-Sep-2006
# Posted on: 04-Sep-2006 13:11:14   

I'm new guy to LLBL Gen Pro. I'm currently using LLBL Gen Pro 1.0.2005.1. The previous developer created DataAccess object using v1.0.2004.1. Since the schema has changed in our system and I'm trying to regenerate DataAccess object using v1.0.2005.1. But the problem is LLBL Gen Pro does not generate GetMulti method with 1 arguments in Collection class which method is previously generated by using v1.0.2004.1. Pls let me know if anyone of you have idea regarding with this issue.

Jessynoo avatar
Jessynoo
Support Team
Posts: 296
Joined: 19-Aug-2004
# Posted on: 04-Sep-2006 15:45:14   

Hi,

the method you're refering to does not belong to the generated code, but is instead located in the base class SD.LLBLGen.Pro.ORMSupportClasses.EntityCollectionBase(Of TEntity) which uses generics. Probably you don't find it because you're old collections were not migrated.

I'd suggest checking your referenced dll and migrating the collections declarations.

Cheers

zirano
User
Posts: 2
Joined: 04-Sep-2006
# Posted on: 05-Sep-2006 04:47:55   

Jessynoo wrote:

Hi,

the method you're refering to does not belong to the generated code, but is instead located in the base class SD.LLBLGen.Pro.ORMSupportClasses.EntityCollectionBase(Of TEntity) which uses generics. Probably you don't find it because you're old collections were not migrated.

I'd suggest checking your referenced dll and migrating the collections declarations.

Cheers

Thanks for ur suggestion Jessynoo.