I am experimenting with the LLBLGenProDynamicDataSource2 and would like to setup some dynamicdata controls but without scaffolding. I am trying to come up with a simple example just using a standard formview but am failing. Are there any examples or can anyone point out where i might be going wrong?
<asp:FormView ID="test" runat="server" DataSourceID="DynamicFormView1DS">
<ItemTemplate>
<%# Eval("test") %>
</ItemTemplate>
</asp:FormView>
<llblgen:LLBLGenProDynamicDataSource2
id="DynamicFormView1DS"
runat="server"
DataContainerType="EntityCollection"
EntityFactoryTypeName="Project.DAL.FactoryClasses.TestEntityFactory"
EntitySetName="?"
>
</llblgen:LLBLGenProDynamicDataSource2>
void DynamicFormView1DS_PerformSelect(object sender, PerformSelectEventArgs2 e)
{
DynamicFormView1DS.EntityCollection = testManager.FetchCollection();
}