I have the following:
var
collection = from o in manager.ObjectContext.Countries.Include(
"Provinces").Include(
"Provinces.Regions").Include(
"Provinces.Regions.Cities") orderby o.Name select o;How do I include ordering for Provinces, Regions and Cities?
Mike B
Copyright (c) Marimer LLC