作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 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/
我正在 nopcommerce 创建一个新主题, 我想打印 View 中的所有类别, 我已经编写了以下代码来检索类别中的所有子类别, 此调用(在第 2 行)失败,出现 Object reference
我是一名优秀的程序员,十分优秀!