Reference required to assembly 'SD.LLBLGen.Pro.ORMSupportClasses.NET11' containing the base class 'SD.LLBLGen.Pro.ORMSupportClasses.EntityCollectionBase2'. Add one to your project.

Posts   
 
    
Posts: 98
Joined: 09-Feb-2005
# Posted on: 30-Dec-2005 00:32:16   

I'm trying to databind to an entitycollection in an asp.net usercontrol. The design-time piece is working, but I'm receiving this Compilation Error when I debug:

Reference required to assembly 'SD.LLBLGen.Pro.ORMSupportClasses.NET11' containing the base class 'SD.LLBLGen.Pro.ORMSupportClasses.EntityCollectionBase2'. Add one to your project.

It claims this line is the culprit <aspsmile ataGrid id=DataGrid1 runat="server" DataSource="<%# EntityCollection1 %>">

I have referenced this assembly though. Is there something else I'm missing here? Thanks

bclubb
User
Posts: 934
Joined: 12-Feb-2004
# Posted on: 30-Dec-2005 01:46:16   

Are you certain that you have the .NET11 version of the ORMSupportClasses and not the .NET10 or .NET20 or the CF version the ORMSupportClasses. Also make sure that the dll exists in your debug folder. Is it possible that you have installed a prior version of LLBLGen recently?

Posts: 98
Joined: 09-Feb-2005
# Posted on: 30-Dec-2005 02:48:55   

bclubb wrote:

Are you certain that you have the .NET11 version of the ORMSupportClasses and not the .NET10 or .NET20 or the CF version the ORMSupportClasses. Also make sure that the dll exists in your debug folder. Is it possible that you have installed a prior version of LLBLGen recently?

Somehow they had been marked Copy Local: False. Weird. Thanks bclubb.