gpt4 book ai didi

c# - 无法创建 NopEngine 实例

转载 作者:行者123 更新时间:2023-11-30 21:55:16 40 4
gpt4 key购买 nike

我正在 nopcommerce 创建一个新主题,
我想打印 View 中的所有类别,

我已经编写了以下代码来检索类别中的所有子类别,
此调用(在第 2 行)失败,出现 Object reference not set to instance of onject 错误。

var _engine = new NopEngine();
var categoryService = _engine.Resolve<ICategoryService>();
var L1Categories = from p in categoryService.GetAllCategoriesByParentCategoryId(24)
where (p.Deleted==false)
select p;

最佳答案

您应该使用以下代码来解析 ICategoryService:

var categoryService = EngineContext.Current.Resolve<ICategoryService>();

不要忘记添加适当的“using”指令

关于c# - 无法创建 NopEngine 实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32412228/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com