InvalidOperationException:无法使用EF dbcontext解析类型的服务

问题描述 投票:0回答:1

我正在尝试对数据库上下文使用依赖注入。我不确定自己在做什么错,但是即使按照所有步骤操作,我仍然会收到错误消息

以下是我要遵循的步骤,建议我哪里出错了。我正在使用多层项目,因此我的存储库位于我的数据库访问层和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-core code-first ef-core-2.2
1个回答
0
投票

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

© www.soinside.com 2019 - 2024. All rights reserved.