_categoryService = _unitOfWork.Get<IcategoryService>();
而不是
_unitOfWork.categoryService.Add(category)
我可以说;
_categoryService.Add(category);解决方法
I am trying to decouple my unit of work from my services or
repository so that I won’t have to touch the UoW code whenever I wish
to add a new service
嗯,这是一个好的开始! 总结
以上是内存溢出为你收集整理的c# – 从服务或回购中解耦工作单元全部内容,希望文章能够帮你解决c# – 从服务或回购中解耦工作单元所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)