Hi,
I'm new to LLBLGen, but already fascinated by it's powerful features.
Unfortunately I'm new to ASP.NET too, so I have a question concerning datasources and the IList...
Using Microsofts standard gridView I had no problem in binding an entity collection to such a grid.
CustomerCollection customers = new CustomerCollection();
customers.GetMulti(null);
gridView.DataSource = customers;
gridView.DataBind();
However, I have to use ComponentArt's grid component for my current project. And the approach above does not work for this component (exception occurs on DataBind()).
Of course I realize that you can't give me support for ComponentArts components, but I figured out that there grid control supports any DataSource that supports the "IList" interface.
So this is my question: Is there any way to generate or convert an IList compatible entity collection with LLBL's means?
Any help on this would we really great! Thanks very much,
Ingmar