.NET Core MVCアプリケーションを作成し、Dependency InjectionとRepository Patternを使用して自分のコントローラにリポジトリをインジェクトしました。しかし、私はエラーが出ています:
InvalidOperationException:「WebApplication1.Controllers.BlogController」をアクティブ化しようとしたときに、「WebApplication1.Data.BloggerRepository」タイプのサービスを解決できません。
モデル(Blog.cs)
namespace WebApplication1.Models
{
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
}
}
DbContext(BloggingContext.cs)
using Microsoft.EntityFrameworkCore;
using WebApplication1.Models;
namespace WebApplication1.Data
{
public class BloggingContext : DbContext
{
public BloggingContext(DbContextOptions<BloggingContext> options)
: base(options)
{ }
public DbSet<Blog> Blogs { get; set; }
}
}
リポジトリ(IBloggerRepository.cs&BloggerRepository.cs)
using System;
using System.Collections.Generic;
using WebApplication1.Models;
namespace WebApplication1.Data
{
internal interface IBloggerRepository : IDisposable
{
IEnumerable<Blog> GetBlogs();
void InsertBlog(Blog blog);
void Save();
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using WebApplication1.Models;
namespace WebApplication1.Data
{
public class BloggerRepository : IBloggerRepository
{
private readonly BloggingContext _context;
public BloggerRepository(BloggingContext context)
{
_context = context;
}
public IEnumerable<Blog> GetBlogs()
{
return _context.Blogs.ToList();
}
public void InsertBlog(Blog blog)
{
_context.Blogs.Add(blog);
}
public void Save()
{
_context.SaveChanges();
}
private bool _disposed;
protected virtual void Dispose(bool disposing)
{
if (!_disposed)
{
if (disposing)
{
_context.Dispose();
}
}
_disposed = true;
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
}
}
Startup.cs(関連コード)
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddDbContext<BloggingContext>(options =>
options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
services.AddScoped<IBloggerRepository, BloggerRepository>();
services.AddMvc();
// Add application services.
services.AddTransient<IEmailSender, AuthMessageSender>();
services.AddTransient<ISmsSender, AuthMessageSender>();
}
コントローラー(BlogController.cs)
using System.Linq;
using Microsoft.AspNetCore.Mvc;
using WebApplication1.Data;
using WebApplication1.Models;
namespace WebApplication1.Controllers
{
public class BlogController : Controller
{
private readonly IBloggerRepository _repository;
public BlogController(BloggerRepository repository)
{
_repository = repository;
}
public IActionResult Index()
{
return View(_repository.GetBlogs().ToList());
}
public IActionResult Create()
{
return View();
}
[HttpPost]
[ValidateAntiForgeryToken]
public IActionResult Create(Blog blog)
{
if (ModelState.IsValid)
{
_repository.InsertBlog(blog);
_repository.Save();
return RedirectToAction("Index");
}
return View(blog);
}
}
}
何が悪いのかわからない。何か案は?
例外は、あなたのコントローラのコンストラクタがインタフェースの代わりに具象クラスを要求しているのでWebApplication1.Data.BloggerRepository
のサービスを解決できないと言っています。それを変更してください。
public BlogController(IBloggerRepository repository)
// ^
// Add this!
{
_repository = repository;
}
私の場合、コンストラクタの引数を必要とするオブジェクトに対して依存性注入を行おうとしていました。この場合、起動時に、構成ファイルから引数を渡しただけです。次に例を示します。
var config = Configuration.GetSection("subservice").Get<SubServiceConfig>();
services.AddScoped<ISubService>(provider => new SubService(config.value1, config.value2));
私と同じような状況がある場合に限り、既存のデータベースを使用してEntityFrameworkのチュートリアルを行っていますが、新しいデータベースコンテキストがmodelsフォルダーに作成されたら、起動時にコンテキストを更新する必要があります。ユーザー認証がある場合はAddDbContextが、AddIdentityも同様
services.AddDbContext<NewDBContext>(options =>
options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
services.AddIdentity<ApplicationUser, IdentityRole>()
.AddEntityFrameworkStores<NewDBContext>()
.AddDefaultTokenProviders();
この問題に遭遇したのは、依存性注入の設定で、コントローラーの依存関係であるリポジトリーの依存関係が欠落していたためです。
services.AddScoped<IDependencyOne, DependencyOne>(); <-- I was missing this line!
services.AddScoped<IDependencyTwoThatIsDependentOnDependencyOne, DependencyTwoThatIsDependentOnDependencyOne>();
私は別の問題を抱えていました、そして私のコントローラのためのパラメータ化されたコンストラクタはすでに正しいインターフェースで追加されていました。私がしたのは簡単なことです。私はstartup.cs
ファイルに行き、そこでregisterメソッドへの呼び出しを見ることができました。
public void ConfigureServices(IServiceCollection services)
{
services.Register();
}
私の場合、このRegister
メソッドは別のクラスInjector
にありました。そこで、新しく導入したインターフェースをそこに追加しなければなりませんでした。
public static class Injector
{
public static void Register(this IServiceCollection services)
{
services.AddTransient<IUserService, UserService>();
services.AddTransient<IUserDataService, UserDataService>();
}
}
ご覧のとおり、この関数のパラメータはthis IServiceCollection
です。
お役に立てれば。
私は働くためにConfigureServicesにこの行を追加しなければなりませんでした。
services.AddSingleton<IOrderService, OrderService>();
私はこの問題をかなり愚かな間違いのために得ました。私はASP.NET Coreアプリケーションでコントローラを自動的に発見するために私のサービス設定手順をフックするのを忘れていました。
この方法を追加して解決しました。
// Add framework services.
services.AddMvc()
.AddControllersAsServices(); // <---- Super important
ああ、@ kimbaudiに感謝、私はこのツタンカーに従った
https://dotnettutorials.net/lesson/generic-repository-pattern-csharp-mvc/
と同じエラーが発生しました。しかし、あなたのコードを読んだ後、私のソリューションが追加されていることがわかりました
services.AddScoped(IGenericRepository、GenericRepository);
intoConfigureServicesStartUp.csファイルのメソッド=))
起動時にDBcontext
の新しいサービスを追加する必要があります。
Default
services.AddDbContext<ApplicationDbContext>(options =>
options.UseSqlServer(
Configuration.GetConnectionString("DefaultConnection")));
これを追加
services.AddDbContext<NewDBContext>(options =>
options.UseSqlServer(
Configuration.GetConnectionString("NewConnection")));
Public void ConfigureServices(IServiceCollection services)
{
services.AddScoped<IEventRepository, EventRepository>();
}
スタートアップのConfigureservices
メソッドにAddscopeを追加するのを忘れています。
AutoFacを使用していてこのエラーが発生した場合は、具象実装が実装するサービスを指定するために "As"ステートメントを追加する必要があります。
すなわちあなたが書く必要があります:
containerBuilder.RegisterType<DataService>().As<DataService>();
の代わりに
containerBuilder.RegisterType<DataService>();
この問題は、データアクセスコンポーネントをそれ用に書かれたインターフェイスに登録しなかったためです。次のように使ってみてください
services.AddTransient<IMyDataProvider, MyDataAccess>();`
services.Add(new ServiceDescriptor(typeof(IMyLogger), typeof(MyLogger)))
をservices.AddTransient<IMyLogger, MyLogger>()
に置き換えました
そしてそれは私のために働いた。
私は例外を下回っていました
System.InvalidOperationException: Unable to resolve service for type 'System.Func`1[IBlogContext]'
while attempting to activate 'BlogContextFactory'.\r\n at
Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory.CreateArgumentCallSites(Type serviceType, Type implementationType, ISet`1 callSiteChain, ParameterInfo[] parameters, Boolean throwIfCallSiteNotFound)\r\n at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory.CreateConstructorCallSite(Type serviceType, Type implementationType, ISet`1 callSiteChain)\r\n at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory.TryCreateExact(ServiceDescriptor descriptor, Type serviceType, ISet`1 callSiteChain)\r\n at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory.TryCreateExact(Type serviceType, ISet`1 callSiteChain)\r\n at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory.CreateCallSite(Type serviceType, ISet`1 callSiteChain)\r\n at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory.CreateArgumentCallSites(Type serviceType, Type implementationType, ISet`1 callSiteChain, ParameterInfo[] parameters, Boolean throwIfCallSiteNotFound)\r\n at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory.CreateConstructorCallSite(Type serviceType, Type implementationType, ISet`1 callSiteChain)\r\n at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory.TryCreateExact(ServiceDescriptor descriptor, Type serviceType, ISet`1 callSiteChain)\r\n at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory.TryCreateExact(Type serviceType, ISet`1 callSiteChain)\r\n at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory.CreateCallSite(Type serviceType, ISet`1 callSiteChain)\r\n at Microsoft.Extensions.DependencyInjection.ServiceProvider.CreateServiceAccessor(Type serviceType, ServiceProvider serviceProvider)\r\n at System.Collections.Concurrent.ConcurrentDictionaryExtensions.GetOrAdd[TKey, TValue, TArg] (ConcurrentDictionary`2 dictionary, TKey key, Func`3 valueFactory, TArg arg)\r\n at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(Type serviceType)\r\n at Microsoft.Extensions.Internal.ActivatorUtilities.GetService(IServiceProvider sp, Type type, Type requiredBy, Boolean isDefaultParameterRequired)\r\n at lambda_method(Closure , IServiceProvider , Object[] )\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass5_0.<CreateControllerFactory>g__CreateController|0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync()
ファクトリを登録してDbContext派生クラスIBlogContextFactoryのインスタンスを作成し、Createメソッドを使用してBlog Contextのインスタンスをインスタンス化し、依存性の注入と一緒に下記のパターンを使用し、単体テストにモックを使用できるようにしたいからです。
私が使いたかったパターンは
public async Task<List<Blog>> GetBlogsAsync()
{
using (var context = new BloggingContext())
{
return await context.Blogs.ToListAsync();
}
}
しかし、新しいBloggingContext()の代わりに、以下のBlogControllerクラスのようにコンストラクタを介してファクトリを注入したいです。
[Route("blogs/api/v1")]
public class BlogController : ControllerBase
{
IBloggingContextFactory _bloggingContextFactory;
public BlogController(IBloggingContextFactory bloggingContextFactory)
{
_bloggingContextFactory = bloggingContextFactory;
}
[HttpGet("blog/{id}")]
public async Task<Blog> Get(int id)
{
//validation goes here
Blog blog = null;
// Instantiage context only if needed and dispose immediately
using (IBloggingContext context = _bloggingContextFactory.CreateContext())
{
blog = await context.Blogs.FindAsync(id);
}
//Do further processing without need of context.
return blog;
}
}
これが私のサービス登録コードです
services
.AddDbContext<BloggingContext>()
.AddTransient<IBloggingContext, BloggingContext>()
.AddTransient<IBloggingContextFactory, BloggingContextFactory>();
以下は私のモデルとファクトリークラスです
public interface IBloggingContext : IDisposable
{
DbSet<Blog> Blogs { get; set; }
DbSet<Post> Posts { get; set; }
}
public class BloggingContext : DbContext, IBloggingContext
{
public DbSet<Blog> Blogs { get; set; }
public DbSet<Post> Posts { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseInMemoryDatabase("blogging.db");
//optionsBuilder.UseSqlite("Data Source=blogging.db");
}
}
public interface IBloggingContextFactory
{
IBloggingContext CreateContext();
}
public class BloggingContextFactory : IBloggingContextFactory
{
private Func<IBloggingContext> _contextCreator;
public BloggingContextFactory(Func<IBloggingContext> contextCreator)// This is fine with .net and unity, this is treated as factory function, but creating problem in .netcore service provider
{
_contextCreator = contextCreator;
}
public IBloggingContext CreateContext()
{
return _contextCreator();
}
}
public class Blog
{
public Blog()
{
CreatedAt = DateTime.Now;
}
public Blog(int id, string url, string deletedBy) : this()
{
BlogId = id;
Url = url;
DeletedBy = deletedBy;
if (!string.IsNullOrWhiteSpace(deletedBy))
{
DeletedAt = DateTime.Now;
}
}
public int BlogId { get; set; }
public string Url { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? DeletedAt { get; set; }
public string DeletedBy { get; set; }
public ICollection<Post> Posts { get; set; }
public override string ToString()
{
return $"id:{BlogId} , Url:{Url} , CreatedAt : {CreatedAt}, DeletedBy : {DeletedBy}, DeletedAt: {DeletedAt}";
}
}
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public int BlogId { get; set; }
public Blog Blog { get; set; }
}
-----これを.net Core MVCプロジェクトで修正するには - 以下に依存関係の登録に関する変更を行いました
services
.AddDbContext<BloggingContext>()
.AddTransient<IBloggingContext, BloggingContext>()
.AddTransient<IBloggingContextFactory, BloggingContextFactory>(
sp => new BloggingContextFactory( () => sp.GetService<IBloggingContext>())
);
要するに。netコア開発者はUnityと.Net Frameworkの場合には世話をされたファクトリ関数を注入する責任があります。
コンテキストである型の変数(ConfigureServicesメソッドの上)を宣言したため、このエラーが発生しました。私が持っていた:
CupcakeContext _ctx
私が何を考えていたかわからない。 Configureメソッドにパラメーターを渡す場合、これを行うことは合法です。