Hi,
just trying to follow some of the linq examples in the doc... in regard to prefetchs it says I need to use this method called "WithPath".
I've done this:
using (DataAccessAdapter adapter = new DataAccessAdapter())
{
LinqMetaData metaData = new LinqMetaData(adapter);
var q = (from c in metaData.Role
select c).WithPath..?
Only I can't seem to go much further as there's no WithPath method in existance.
This is the example i was referencing:
var q = (from c in metaData.Customer
where c.Country=="UK"
select c).WithPath(p=>p.Prefetch(c=>c.Orders));
I don't see where i've done wrong....