I'm getting the error "The ConnectionString property has not been initialized. " when I try to databind a LLBLGenProDataSource2 control to a Telerik RadGrid. Has anyone run into this error or know how I might resolve it. I'm not sure why it's having a connection string issue as I don't have the issue if LivePersistence="false" and I set the datasource via the code behind. I only get it when I try to LivePersistence, which I would really like to use so that I don't have to do all of the manual coding using the events method.
<llblgenpro:LLBLGenProDataSource2 ID="CodeSetsDataSource" runat="server"
AdapterTypeName="Wachter.Enterprise.CodeSets.Domain.DatabaseSpecific.DataAccessAdapter, Wachter.Enterprise.CodeSets.Domain"
DataContainerType="EntityCollection"
LivePersistence="true"
CacheLocation="Session"
EntityFactoryTypeName="Wachter.Enterprise.CodeSets.Domain.FactoryClasses.CodeSetEntityFactory, Wachter.Enterprise.CodeSets.Domain">
</llblgenpro:LLBLGenProDataSource2>
<asp:UpdatePanel ID="uplCodeSets" runat="server">
<ContentTemplate>
<telerik:RadGrid ID="rgdCodeSets"
DataSourceID="CodeSetsDataSource"
Skin="Default2006"
GridLines="Both"
AutoGenerateEditColumn="true"
runat="server">
<MasterTableView EditMode="InPlace">
<RowIndicatorColumn>
<HeaderStyle Width="20px" />
</RowIndicatorColumn>
<ExpandCollapseColumn Visible="True">
<HeaderStyle Width="20px" />
</ExpandCollapseColumn>
<EditFormSettings>
<EditColumn UniqueName="EditCommandColumn1">
</EditColumn>
</EditFormSettings>
</MasterTableView>
<FilterMenu EnableTheming="True" Skin="Default2006">
<CollapseAnimation Duration="200" Type="OutQuint" />
</FilterMenu>
</telerik:RadGrid>
</ContentTemplate>
</asp:UpdatePanel>
Thanks,
Brad