获得产品episerver商务

时间:2016-04-06 15:34:56

标签: c# asp.net-mvc episerver episerver-commerce

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

但是说我有以下树。

目录根 - > testcatalog - > testlevel - > testproduct 1和2

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

使用最新的episerver和episerver商务(9)。

1 个答案:

答案 0 :(得分:1)

找到了一种方法。

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

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