Hello,
(first of all, excuse my poor english).
I'am using the LLblgenProdatasource to act beetween a gridview and an entity collection.
The DataContainerType and entityCollectionTypename properties are defined in design mode.
The gridview datasource property is also defined at design time.
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="Declid"
DataSourceID="LLBLGenProDataSource1">
<Columns>
<asp:BoundField DataField="Declid" HeaderText="Declid" ReadOnly="True" SortExpression="Declid" />
..
..
</Columns>
</asp:GridView>
<llblgenpro:LLBLGenProDataSource ID="LLBLGenProDataSource1" runat="server" DataContainerType="EntityCollection"
EnablePaging="True" EntityCollectionTypeName="ReproDal.CollectionClasses.DidentCollection, ReproDal"
MaxNumberOfItemsToReturn="1">
</llblgenpro:LLBLGenProDataSource>
The entitycollection (selfservicing) DidentCollection is filled at runtime and assigned to the Llblprogendatasource also at runtime.
-->
the issues is : If i leave the MaxnumberofitemsToReturn to '0' (default value), its tries to fetch the whole table beforehand.
I don't know if i missed something in the docs, but any help will be welcome.