为什么脚手架不能按预期工作?

时间:2019-11-12 19:53:50

标签: c# entity-framework model-view-controller asp.net-core-mvc asp.net-mvc-scaffolding

我正在尝试脚手架,但出现以下错误:

  

运行所选代码生成器时发生错误:“未为类型'MvcProduct.Data.MvcProductContext'定义无参数构造函数。'

在这里您可以看到它的图像: Error when scaffolding

以下是我的 MvcProductContext

using Microsoft.EntityFrameworkCore;
using MvcProduct.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace MvcProduct.Data
{
    public class MvcProductContext : DbContext
    {
        public MvcProductContext(DbContextOptions<MvcProductContext> options)
            : base(options)
        {
        }

        public DbSet<Product> Product { get; set; }
    } 

appsettings.json

 {
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "Microsoft.Hosting.Lifetime": "Information"
    }
  },
  "AllowedHosts": "*",
  "ConnectionStrings": {
    "MvcProductContext": "Server=(localdb)\\mssqllocaldb;Database=MvcProductContext-1;Trusted_Connection=True;MultipleActiveResultSets=true"
  }
ConfigureServices 文件中的

Startup.cs 方法:

public void ConfigureServices(IServiceCollection services)
{
    services.AddControllersWithViews();

    services.AddDbContext<MvcProductContext>(options =>
    options.UseSqlServer(Configuration.GetConnectionString("MvcProductContext")));
}

我还尝试在 MvcProductContext 类中添加第二个构造函数。 (我想避免但又不想做的事情)没有任何参数的第二个构造函数。但是,如果我这样做,我只会得到另一个错误:

  

运行所选代码生成器时发生错误:'尚未为此DbContext配置数据库提供程序。可以通过覆盖DbContext.OnConfiguring方法或通过在应用程序服务提供程序上使用AddDbContext来配置提供程序。如果是应用服务提供商上的AddDbContext。如果使用AddDbContext,还请确保您的DbCotnext类型在其构造函数中接受DbContextOptions<TContext>对象,并将其传递给DbContext的基本构造函数。

Microsoft也是如此。他们正在使用Entity Framework为MVC控制器提供视图。他们这样做的时候没有在他们的 MvcMovieCOntext 类中添加第二个构造函数。他们的 MvcMovieContextClass 对应于我的 MvcProductContext 类。

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

只需将IDesignTimeDbContextFactory实现添加到您的项目中,然后再次尝试使用脚手架即可。它将实例化您的DbContext。

public class DesignTimeDbContextFactory : IDesignTimeDbContextFactory<MvcProductContext>
{
    public MvcProductContext CreateDbContext(string[] args)
    {
        IConfigurationRoot configuration = new ConfigurationBuilder()
            .SetBasePath(Directory.GetCurrentDirectory())
            .AddJsonFile("appSettings.json")
            .Build();
        var builder = new DbContextOptionsBuilder<MvcProductContext>();
        var connectionString = configuration.GetConnectionString("MvcProductContext");
        builder.UseSqlServer(connectionString);
        return new MvcProductContext(builder.Options);
    }
}