IRelationalDatabaseCreator服务

时间:2016-01-08 10:41:32

标签: c# entity-framework asp.net-core asp.net-core-mvc entity-framework-core

昨天我开始学习ASP.NET 5 MVC 6 with Entity Framework 7.0.0-rc1-final,我遵循了本教程:Link。问题是当我运行它时会在此函数上抛出NullPointerException:

 if (serviceProvider.GetService<IRelationalDatabaseCreator>().Exists())
        {//adding some entities }

我的连接字符串是:"Server=(localdb)\\MSSQLLocalDB; Database=Test; Trusted_Connection=True; MultipleActiveResultSets=true"

在Startup.cs中我有这段代码:

public void ConfigureServices(IServiceCollection services)
 {
      services.AddEntityFramework()
              .AddSqlServer()
              .AddDbContext<Models.HRPContext>(options =>
              {
                  options.UseSqlServer(Configuration["Data:ConnectionString"]);
              });
      ....... 
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
      Utils.AddSampleData.Initialize(app.ApplicationServices);
      ......
}

尚未创建数据库测试。有人解决了这个例外吗?感谢

2 个答案:

答案 0 :(得分:3)

该教程为out of date。请改用this one

在更新的教程中,if语句不存在。相反,它通过检查上下文对象的Database属性来检查数据库是否存在:

if (context.Database == null)
{
    throw new Exception("DB is null");
}

答案 1 :(得分:-1)

您希望调试应用程序以解决此问题,在此行中设置断点

if (serviceProvider.GetService<IRelationalDatabaseCreator>().Exists())

并检查哪个成员是null。我怀疑你还没有注册IRelationalDatabaseCreator或者因为你的IoC容器没有拿到任何原因。