In an ASP.NET app.
How do I fill the e.ContainedCollection object on a PerformSelect? In the old days I'd call the Adpater.FetchEntityCollection() method.
Here's my simple Linq query:
var items = (ILLBLGenProQuery) from item in linq.AAA
where item.IsAAA == false
orderby item.AAA
select item;
EntityCollection<AAAEntity> AAAEntities = items.Execute<EntityCollection<AAAEntity>>();