文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何在 ASP.NET Core 中使用 FromServices

2024-12-03 12:18

关注

构造函数注入

属性注入

方法注入

构造函数 这种注入方式在 ASP.NET Core 中应用的是最广的,可想而知,只用这种方式也不是 放之四海而皆准 ,比如说,我不希望每次 new class 的时候都不得不注入,换句话说,我想把依赖注入的粒度缩小,我希望只对某一个或者某几个方法单独实现注入,而不是全部,首先这能不能实现呢?实现肯定是没有问题的,只需用 FromServices 特性即可,它可以实现对 Controller.Action 单独注入。

这篇文章我们将会讨论如何在 ASP.NET Core 中使用 FromServices 特性实现依赖注入,同时我也会演示最通用的 构造函数注入 。

使用构造函数注入接下来先通过 构造函数 的方式实现依赖注入,考虑下面的 ISecurityService 接口。

public interface ISecurityService { bool Validate(string userID, string password); } public class SecurityService : ISecurityService { public bool Validate(string userID, string password) { //Write code here to validate the user credentials return true; } }

要想实现依赖注入,还需要将 SecurityService 注入到 ServiceCollection 容器中,如下代码所示:

// This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.AddTransient(); services.AddControllersWithViews(); }

下面的代码片段展示了如何通过 构造函数 的方式实现注入。

public class HomeController : Controller { private readonly ILogger _logger; private readonly ISecurityService _securityService; public HomeController(ILogger logger, ISecurityService securityService) { _logger = logger; _securityService = securityService; } public IActionResult Index() { var isSuccess = _securityService.Validate(string.Empty, string.Empty); return View(); } }

FromServicesAttribute 简介FromServicesAttribute 特性是在 Microsoft.AspNetCore.Mvc 命名空间下,通过它可以直接将service注入到action方法中,下面是 FromServicesAttribute 的源码定义:

[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = true)] public class FromServicesAttribute : Attribute, IBindingSourceMetadata { public FromServicesAttribute(); public BindingSource BindingSource { get; } }

使用 FromServices 依赖注入接下来将 FromServices 注入到 Action 方法参数上,实现运行时参数的依赖解析,知道这些基础后,现在可以把上一节中的 构造函数注入 改造成 FromServices注入,如下代码所示:

public class HomeController : Controller { private readonly ILogger _logger; public HomeController(ILogger logger) { _logger = logger; } public IActionResult Index([FromServices] ISecurityService securityService) { var isSuccess = securityService.Validate(string.Empty, string.Empty); return View(); } }

图片

总的来说,如果你只想在某些Action上而不是整个 Controller 中使用依赖注入,那么使用 FromServices 将是一个非常好的选择,而且还可以让你的代码更加干净,更加可维护。

译文链接:https://www.infoworld.com/article/3451821/how-to-use-the-fromservices-attribute-in-aspnet-core.html

 

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯