Hello
I'm not new to LLBL but I am new to using it in Adapter mode.
I've done some code to select a recordset:
DataAccessAdapter adapter = new DataAccessAdapter();
SiteEntity site = new SiteEntity(config.General.LimitToSite);
EntityCollection<SitePluEntity> plus = site.SitePlu;
adapter.FetchEntityCollection(plus,null);
And I would like to use a child collection of my plus collection called "style" - obviously in SelfServicing I'd just do:
site.style[3].something...
.... for example, but I can't do that (and I want to nest down about 4 levels in total.
Thanks guys... this is using v2.5 by the way.
Darren