c# – ASP.NET核心依赖注入
发布时间:2020-12-15 23:34:05 所属栏目:百科 来源:网络整理
导读:在我的asp.net核心解决方案中,我有2个项目:asp.net app和包含模式层的库,其中包含模式库. 我问应用程序中的DI实现我的界面 services.AddTransientIRepositrory,Repository(); 但!存储库构造函数有参数 public Repository(string connectionString){ _appDB
在我的asp.net核心解决方案中,我有2个项目:asp.net app和包含模式层的库,其中包含模式库.
我问应用程序中的DI实现我的界面 services.AddTransient<IRepositrory,Repository>(); 但!存储库构造函数有参数 public Repository(string connectionString) { _appDBContext = new AppDBContext(connectionString); } 如何正确配置DI以使用appsettings.json(asp.net app)中的特定字符串创建存储库? 解决方法
有一个接受实现工厂的重载
services.AddTransient<IRepository>(isp => new Repository(conn)); 您可以使用获取连接字符串 Configuration.GetConnectionString("DefaultConnection") (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |