Hi there,
I have the following code from a DW 9 solution:
var langID = Pageview.Area.EcomLanguageId; groups = Dynamicweb.Ecommerce.Services.ProductGroups.GetToplevelGroups(langID);
GetToplevelGroups and GetGroups are now internal in DW10. What's the equivalent I can use? Something like this?
Dynamicweb.Ecommerce.Services.ProductGroups.GetGroups().Where(theGroup => theGroup.IsTopGroup())
Imar