no parameterless constructor define for type 解决一例

在生成根据模型和上下文生成带增删查改操作的视图的控制器时,提示上述信息,网上查找了资料也没有解决,突然想起该项目是连接MSSQL数据库和Redis数据库的,并且已经依赖注入了,而Redis数据库的服务器却因故关闭了,把Redis的注入注释了就正常生成了。

           services.AddDbContext<CustomDbContext>(options =>
                options.UseSqlServer(
                    Configuration.GetConnectionString("DefaultConnection")));
            services.AddDefaultIdentity<IdentityUser>(options => options.SignIn.RequireConfirmedAccount = true)
                //.AddDefaultUI(UIFramework.Bootstrap4)
                .AddEntityFrameworkStores<CustomDbContext>();
            services.AddMvc().SetCompatibilityVersion(Microsoft.AspNetCore.Mvc.CompatibilityVersion.Latest);
            //services.AddSingleton<IConnectionMultiplexer>(ConnectionMultiplexer.Connect("10.0.0.7"));
            services.AddControllersWithViews();

  

posted @ 2020-02-03 15:29  编程-一生坚持的事业  阅读(2386)  评论(0编辑  收藏  举报