首页 > 解决方案 > InvalidOperationException:无法使用 EF dbcontext 解析类型的服务

问题描述

我正在尝试对数据库上下文使用依赖注入。我不确定我做错了什么,但即使按照所有步骤我仍然得到错误

以下是我遵循的步骤,建议我哪里出错了。我正在使用多层项目,因此我的存储库位于我的数据库访问层和 mvc api 应用程序中的控制器中

我的数据库上下文类

   public partial class TestDbContext: DbContext  
    {

       public TestDbContext(DbContextOptions<TestDbContext> options)
           : base(options)
       {
       }

       public virtual DbSet<Table1> Table1{ get; set; }
    }

 public interface IRepository<T> where T : class
 {
       IQueryable<T> GetDbSet();
 }
 public class Repository<T> : IRepository<T> where T : class
   {
       protected DbContext _entities;
       protected readonly DbSet<T> _dbset;

       public Repository(DbContext context)
       {
           _entities = context;
           _dbset = context.Set<T>();
       }


       public virtual IQueryable<T> GetDbSet()
       {
           return _dbset;
       }
  }

pulbic interface IUserRepository
{
     List<UsersInfo> GetUsers();
}


public class UserRepository:IUserRepository
{
   private readonly IRepository<Table1> table1repo;
   public UserRepository(IRepository<Table1> _table1Repo)
   {
       table1repo = _table1Repo;
   }
   public List<UsersInfo> GetUsers()
   {
      return table1repo.GetDbSet().ToList();
   }
}

public class MyController : : ControllerBase
{
     private readonly IUserRepository _UserRepo;
      public MyController (IUserRepository UserRepo)
       {
           _UserRepo= clientInfo;
       }
       [HttpGet]
       public async Task<IActionResult> Get()
       {
           try
           {
               var result = _UserRepo.GetUsers();
               return new JsonResult(result) { SerializerSettings = new JsonSerializerSettings() { Formatting = Formatting.Indented } };
           }
           catch(Exception e)
           {
               throw e;
           }
       }

}

Startup.cs

public void ConfigureServices(IServiceCollection services)
       {
           services.AddSingleton<IConfiguration>(Configuration);
           services.Configure<IISOptions>(options =>
           {
               options.AutomaticAuthentication = false;
           });

           services.AddDbContext<TestDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("ConnectionString")));
           services.AddScoped<IUserRepository, UserRepository>();
           services.AddScoped(typeof(IRepository<>), typeof(Repository<>));
           services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
       }


标签: .net-corecode-firstef-core-2.2

解决方案


您的存储库类中的上下文类型应该是 TestDbContext 而不是 DbContext。

public class Repository<T> : IRepository<T> where T : class
   {
       protected TestDbContext _entities;
       protected readonly DbSet<T> _dbset;

       public Repository(TestDbContext context)
       {
           _entities = context;
           _dbset = context.Set<T>();
       }


       public virtual IQueryable<T> GetDbSet()
       {
           return _dbset;
       }
  }

推荐阅读