c# – 获取产品episerver商务

按照本教程
http://world.episerver.com/documentation/commerce/get-started-with-commerce/3–creating-a-start-page/开始使用episerver商务.将url写入特定问题时,它可以正常工作.

但是说我有以下树.

目录根 – > testcatalog – > testlevel – >试验品1和2

在testevel上(如果查看教程有模型MyNode),我如何获得所有子“产品”,testproduct 1和2?似乎有100种方法可以做到这一点.

使用最新的episerver和episerver商业(9).

最佳答案 找到了一种方法.

var contentRepository = ServiceLocator.Current.GetInstance<IContentRepository>();
var products = contentRepository.GetChildren<MyProduct>(Model.ContentLink);

foreach(var product in products)
{
    //Do what you want.
}
点赞