2.6.10.809 (SD.LLBLGen.Pro.LinqSupportClasses.NET35.dll)
2.6.10.930 (SD.LLBLGen.Pro.ORMSupportClasses.NET20.dll)
2.6.10.917 (SD.LLBLGen.Pro.DQE.SqlServer.NET20.dll)
I have a datasource whose EntityCollection property is an entity collection with a prefetch path (actually several and subpaths too).
The main grid uses the datasource.
Inside a cell of the main grid, I want to list the items in the prefetch path for the current item. Can I use, say, a Repeater with the DataSourceID set to the main grid's datasource but get the items of the repeater to be those in the prefetched collection?
This a little like a master-details scenario, but without going off to the database as the prefetch path already contains exactly the items needed.
So, to paraphrase with Northwind names, if the entity collection contained CustomerEntities and there was a prefetch path of OrderEntities, could I use this collection of OrderEntities inside the main customer grid via an embedded Repeater. If so, how? Is there a more obvious way I have missed?