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
<asp
ataGrid id=DataGrid1 runat="server" DataSource="<%# EntityCollection1 %>">
I have referenced this assembly though. Is there something else I'm missing here? Thanks