- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试同时学习 asp.net core (3.1) 和 clean architecture。我用作基础的 GitHub 存储库是 https://github.com/ivanpaulovich/clean-architecture-manga这很棒。
使用的方法非常好,repo 所有者会为您解答每种方法的原因。我发现的问题不是关于现在的方法,而是更好的解决方案。webapi\dependencyinjection\ApplicationExtensions.cs class 为他拥有的每个用例添加一个范围:
services.AddScoped<Application.Boundaries.CloseAccount.IUseCase, Application.UseCases.CloseAccount>();
services.AddScoped<Application.Boundaries.Deposit.IUseCase, Application.UseCases.Deposit>();
services.AddScoped<Application.Boundaries.GetAccountDetails.IUseCase, Application.UseCases.GetAccountDetails>();
services.AddScoped<Application.Boundaries.GetCustomerDetails.IUseCase, Application.UseCases.GetCustomerDetails>();
services.AddScoped<Application.Boundaries.Register.IUseCase, Application.UseCases.Register>();
services.AddScoped<Application.Boundaries.Withdraw.IUseCase, Application.UseCases.Withdraw>();
services.AddScoped<Application.Boundaries.Transfer.IUseCase, Application.UseCases.Transfer>();
有什么方法可以让它通用吗?只用一行代码解决示例代码,然后注入(inject)所有创建的用例?
最佳答案
显式注册依赖项可以被视为一个好处,因为您不会在运行时从看似“神奇”的注册中得到意外的惊喜。尤其如此,因为您注册这些类型的约定似乎完全基于接口(interface)命名或 namespace 。如果您想在那里使用基于约定的注册,我建议您添加一些更强的标识符(例如公共(public)接口(interface)或标记接口(interface))。否则,最好列出每个 DI 注册,即使这看起来很冗长。
也就是说,有些实用程序可以帮助您进行基于约定的注册。当然,您总是可以使用反射编写一些代码来自动注册这些东西。还有这个非常有用的实用程序包Scrutor
它将根据约定为您注册类型。
如果每个类型只实现一个接口(interface),那么您可以使用以下扫描将服务注册为其接口(interface)的作用域服务:
var type = typeof(Application.UseCases.CloseAccount);
services.Scan(scan => scan.FromAssembliesOf(type)
.AddClasses(classes => classes.InExactNamespaceOf(type))
.AsImplementedInterfaces()
.WithScopedLifetime());
关于c# - 如何为我拥有的每个用例避免 Services.AddScoped?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59519579/
我最近购买了《C 编程语言》并尝试了 Ex 1-8这是代码 #include #include #include /* * */ int main() { int nl,nt,nb;
早上好!我有一个变量“var”,可能为 0。我检查该变量是否为空,如果不是,我将该变量保存在 php session 中,然后调用另一个页面。在这个新页面中,我检查我创建的 session 是否为空,
我正在努力完成 Learn Python the Hard Way ex.25,但我无法理解某些事情。这是脚本: def break_words(stuff): """this functio
我是一名优秀的程序员,十分优秀!