ASP.NET Core Dependency Injectionエラー:アクティブ化を試みている間、タイプのサービスを解決できません


198

.NET Core MVCアプリケーションを作成し、依存性注入とリポジトリパターンを使用して、リポジトリをコントローラーに注入しました。ただし、エラーが発生します。

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);
        }
    }
}

何が悪いのかわかりません。何か案は?


これは古い質問ですが、... dbコンテキストをサービス内に配置しないでください。dbコンテキストは、スコープリゾルバーによって自動的に破棄されます。サービス内で破棄すると、同じリクエスト/スコープ内で次のサービスを呼び出すときに破棄される可能性があります。
Silvermind

1
サービス(欠落しているクラス)が「services.AddTransient <YourClassOrInterface>();」を使用して追加されていることを確認してください
Mauricio Gracia Gutierrez

回答:


293

例外はWebApplication1.Data.BloggerRepository、コントローラーのコンストラクターがインターフェイスではなく具象クラスを要求しているため、サービスを解決できないことを示しています。だからそれを変更してください:

public BlogController(IBloggerRepository repository)
//                    ^
//                    Add this!
{
    _repository = repository;
}

7
1人のキャラクターを見落とすのがいかに簡単か、驚くべきことです。ありがとう!
jleach

HttpContextAccessorクラスを使用しているときにこれを受け取ったチャンピオンは、私が必要であることがIHttpContextAccessor
わかりまし

これで30分以上腰を下ろしたのでイライラしました。Macで最悪のVSを実行すると、「Donetが予期せず終了しました」というエラーが表示されます。正しいエラーを取得するためにターミナルで実行する必要があるので、この解決策にぶつかりました。
NoloMokgosi

57

依存関係注入のセットアップで、コントローラーの依存関係であるリポジトリーの依存関係が欠落していたため、この問題が発生しました。

services.AddScoped<IDependencyOne, DependencyOne>();    <-- I was missing this line!
services.AddScoped<IDependencyTwoThatIsDependentOnDependencyOne, DependencyTwoThatIsDependentOnDependencyOne>();

私のために解決しました、これは私の問題
でした

サービスが正しい「名前空間」にないことを認識したため、問題を解決しました。
user2982195

24

私の場合、コンストラクタの引数を必要とするオブジェクトの依存性注入を試みていました。この場合、起動時に構成ファイルの引数を指定しただけです。次に例を示します。

var config = Configuration.GetSection("subservice").Get<SubServiceConfig>();
services.AddScoped<ISubService>(provider => new SubService(config.value1, config.value2));

18

私には別の問題がありました。そうです、コントローラーのパラメーター化されたコンストラクターは、正しいインターフェイスで既に追加されています。私がしたことは簡単なことでした。私はちょうど私に行くstartup.cs、私はメソッドを登録するための呼び出しを見ることができたファイル、。

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

お役に立てれば。


これは私が追加するのを忘れたものです。サービスへのインジェクターの参照を見逃しました。.AddTransient <>();に必要 君たちありがとう!
Omzig

14

私と同じような状況の人がいる場合にのみ、既存のデータベースでEntityFrameworkのチュートリアルを行っていますが、モデルフォルダーに新しいデータベースコンテキストが作成されると、スタートアップだけでなくサービス内でもコンテキストを更新する必要があります。 AddDbContext、ただしユーザー認証がある場合はAddIdentity

services.AddDbContext<NewDBContext>(options =>
                options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));

services.AddIdentity<ApplicationUser, IdentityRole>()
                .AddEntityFrameworkStores<NewDBContext>()
                .AddDefaultTokenProviders();

7

新しいサービスを追加する必要があります DBcontextスタートアップに

デフォルト

services.AddDbContext<ApplicationDbContext>(options =>
                options.UseSqlServer(
                    Configuration.GetConnectionString("DefaultConnection")));

これを追加

services.AddDbContext<NewDBContext>(options =>
                options.UseSqlServer(
                    Configuration.GetConnectionString("NewConnection")));


7
Public void ConfigureServices(IServiceCollection services)
{
    services.AddScoped<IEventRepository, EventRepository>();           
}

起動ConfigureServicesメソッドに「services.AddScoped」を追加するのを忘れました。


5

この問題は、かなりばかげた間違いのために発生しました。ASP.NET Coreアプリケーションでコントローラーを自動的に検出するために、サービス構成手順をフックするのを忘れていました。

このメソッドを追加すると解決しました:

// Add framework services.
            services.AddMvc()
                    .AddControllersAsServices();      // <---- Super important

5

動作させるには、この行をConfigureServicesに追加する必要がありました。

services.AddSingleton<IOrderService, OrderService>();

3

例外を下回っていた

        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メソッドを使用してブログコンテキストのインスタンスをインスタンス化して、依存関係インジェクションと一緒に以下のパターンを使用したり、ユニットテストにモッキングを使用したりしたかったからです。

私が使いたかったパターンは

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の場合はこれが処理されます。


3

この問題は、データアクセスコンポーネントを、それ用に作成されたインターフェイスに登録しなかったことが原因です。次のように使用してみてください

services.AddTransient<IMyDataProvider, MyDataAccess>();`

2

AutoFacを使用していてこのエラーが発生した場合は、「As」ステートメントを追加して、具体的な実装が実装するサービスを指定する必要があります。

つまり。あなたは書くべきです:

containerBuilder.RegisterType<DataService>().As<DataService>();

の代わりに

containerBuilder.RegisterType<DataService>();

2

おお、ありがとう@kimbaudi、私はこのtutsをフォローしました

https://dotnettutorials.net/lesson/generic-repository-pattern-csharp-mvc/

あなたと同じエラーが発生しました。しかし、あなたのコードを読んだ後、私は私の解決策が追加していることを知りました

services.AddScoped(IGenericRepository、GenericRepository);

ConfigureServicesの StartUp.csファイル内のメソッド=))


2

サービスの解決はクラスコードに到達する前でも行われるため、依存関係の挿入を確認する必要があります。

私の場合、私は追加しました

        services.AddScoped<IMeasurementService, MeasurementService>();

StartupExtensions.cs


1

services.AddSingleton();を追加します。プロジェクトのStartup.csファイルのConfigureServicesメソッド内。

public void ConfigureServices(IServiceCollection services)
    {
        services.AddRazorPages();
        // To register interface with its concrite type
        services.AddSingleton<IEmployee, EmployeesMockup>();
    }

詳細については、次のURLにアクセスしてください。https//www.youtube.com/watch?v = aMjiiWtfj2M

すべてのメソッド(例:AddSingleton vs AddScoped vs AddTransient)このURLにアクセスしてくださいhttps : //www.youtube.com/watch?v= v6Nr7Zman_Y&list=PL6n9fhu94yhVkdrusLaQsfERmL_Jh4XmU&index=44 )


1

同じ問題があり、コードが初期化される前にインジェクションを使用していたことがわかりました。

services.AddControllers(); // Will cause a problem if you use your IBloggerRepository in there since it's defined after this line.
services.AddScoped<IBloggerRepository, BloggerRepository>();

私はそれが質問とは何の関係もないことを知っていますが、私はこのページに送られて以来、私はそれが他の誰かにとって役立つと思います。


0

交換しました

services.Add(new ServiceDescriptor(typeof(IMyLogger), typeof(MyLogger)));

services.AddTransient<IMyLogger, MyLogger>();

そしてそれは私のために働いた。


-1

私のコンテキストであるタイプの変数(ConfigureServicesメソッドの上)を宣言したため、このエラーが発生しました。私が持っていた:

CupcakeContext _ctx

私が何を考えていたかわからない。Configureメソッドにパラメーターを渡す場合は、これを行うことが合法であることを知っています。


-1

「すべてのバージョンの.netコアの依存関係xxxxxxxxを解決できません」というエラーを受け取りました。私はインターネットで入手可能なすべてのものを試し、何日も行き詰まりました。私が思いついた唯一の解決策は、プロジェクトにnuget.configファイルを追加し、それをdotnet復元を使用して機能させることでした。

nuget.configファイルの内容:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-ci-dev/api/v3/index.json" />
    <add key="AspNetCoreTools" value="https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json" />
    <add key="NuGet" value="https://api.nuget.org/v3/index.json" />
  </packageSources>
</configuration>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.