我试图将我的工作单元与我的服务或存储库分离,以便每当我想添加新服务时,我都不必触摸UoW代码.我该怎么做呢?
_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
嗯,这是一个好的开始! 原文链接:https://www.f2er.com/csharp/96987.html