ASP.NET 核心 RC2 种子数据库
ASP.NET Core RC2 Seed Database
我的问题是我正在尝试用数据播种 Entity Framework 核心数据库,在我看来,下面的代码显示有效。我意识到这不应该在 ApplicationDbContext
构造函数中调用,而应该从 startup
中调用,但我不确定如何执行此操作。
编辑:根据Ketrex提供的解决方案,我的解决方案如下:
Startup.cs:
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
...
app.ApplicationServices.GetRequiredService<ApplicationDbContext>().Seed();
}
种子扩展:
public static class DbContextExtensions
{
public static void Seed(this ApplicationDbContext context)
{
// Perform database delete and create
context.Database.EnsureDeleted();
context.Database.EnsureCreated();
// Perform seed operations
AddCountries(context);
AddAreas(context);
AddGrades(context);
AddCrags(context);
AddClimbs(context);
// Save changes and release resources
context.SaveChanges();
context.Dispose();
}
private static void AddCountries(ApplicationDbContext context)
{
context.AddRange(
new Country { Name = "England", Code = "En" },
new Country { Name = "France", Code = "Fr" }
);
}
...
}
我知道为数据库播种在 Entity Framework 的优先级列表中排在前列,但如果有一些文档说明如何完成这项微不足道的任务或至少提供一个临时解决方法,那就太好了.如果有人可以提供有关如何执行此操作的一些指导,将不胜感激。我觉得我接近解决方案,但无法将其拼凑起来。
感谢您的帮助。
假设您正在使用内置的 DI 容器,这里是您可以完成此操作的一种方法。
在启动的 Configure 方法中引用您的种子方法 class,并将 IApplicationBuilder 对象作为参数而不是 DbContext 传递,如下所示:
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
//...
// Put this at the end of your configure method
DbContextSeedData.Seed(app);
}
接下来,修改您的种子方法以接受 IApplicationBuilder 实例。然后您将能够启动 DbContext 的一个实例,并执行您的种子操作,如下所示:
public static void Seed(IApplicationBuilder app)
{
// Get an instance of the DbContext from the DI container
using (var context = app.ApplicationServices.GetRequiredService<ApplicationDbContext>())
{
// perform database delete
context.Database.EnsureDeleted;
//... perform other seed operations
}
}
您还可以使用 Startup.cs ConfigureServices
方法使您的 ApplicationDbContext 可用(将 dbcontext 注册为服务):
public void ConfigureServices(IServiceCollection services)
{
var connectionString = Startup.Configuration["connectionStrings:DBConnectionString"];//this line is not that relevant, the most important thing is registering the DbContext
services.AddDbContext<ApplicationDbContext>(o => o.UseSqlServer(connectionString));
}
然后将您的 ApplicationDbContext 添加为您的 Configure
方法中的依赖项,该方法将调用您的种子扩展方法。
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, ApplicationDbContext myApplicationDbContext)
{
//...
myApplicationDbContext.Seed();
}
最后,seed 方法可以快速检查一个重要的 table,因为重新创建数据库可能太繁重了:
public void Seed()
{
//....
if(context.Countries.Any())
return;
//...
}
我希望它能帮助你或其他人,至少作为另一种选择。
如果您想从单独的 class 库中 运行 您的 EF 代码并在其中进行播种,您可以执行以下操作。这是使用 TSQL...
1)
创建一个新的 class 库。
使用 NuGet 添加以下依赖项...
Microsoft.AspNetCore
Microsoft.AspNetCore.Identity.EntityFrameworkCore
Microsoft.EntityFrameworkCore.SqlServer
Microsoft.EntityFrameworkCore.Tools
2) 将程序包管理器控制台指向该项目,然后 运行...
PM> add-migration Seeder01
然后...
PM> update-database
这会给你一个空迁移。
3) 将更新脚本编写为...
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Migrations;
using System;
using System.Collections.Generic;
using Microsoft.Extensions.Configuration;
using System.IO;
namespace Test02.Data.Migrations
{
public partial class Seeder01 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
string sql = string.Empty;
sql = "SET IDENTITY_INSERT State ON;";
sql += "Insert into State (Id, Name) values ";
sql += "(2, 'NSW'),";
sql += "(3, 'VIC'),";
sql += "(4, 'QLD'),";
sql += "(5, 'SA')";
sql += ";";
sql += "SET IDENTITY_INSERT State OFF;";
migrationBuilder.Sql(sql);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
string sql = string.Empty;
sql = "delete State;";
migrationBuilder.Sql(sql);
}
}
}
4) 使用...恢复到之前的迁移
PM> add-migration {PriorMigrationName}
重新加载种子迁移并更新数据库...
PM> add-migration Seeder01
PM> update-database
我的问题是我正在尝试用数据播种 Entity Framework 核心数据库,在我看来,下面的代码显示有效。我意识到这不应该在 ApplicationDbContext
构造函数中调用,而应该从 startup
中调用,但我不确定如何执行此操作。
编辑:根据Ketrex提供的解决方案,我的解决方案如下:
Startup.cs:
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
...
app.ApplicationServices.GetRequiredService<ApplicationDbContext>().Seed();
}
种子扩展:
public static class DbContextExtensions
{
public static void Seed(this ApplicationDbContext context)
{
// Perform database delete and create
context.Database.EnsureDeleted();
context.Database.EnsureCreated();
// Perform seed operations
AddCountries(context);
AddAreas(context);
AddGrades(context);
AddCrags(context);
AddClimbs(context);
// Save changes and release resources
context.SaveChanges();
context.Dispose();
}
private static void AddCountries(ApplicationDbContext context)
{
context.AddRange(
new Country { Name = "England", Code = "En" },
new Country { Name = "France", Code = "Fr" }
);
}
...
}
我知道为数据库播种在 Entity Framework 的优先级列表中排在前列,但如果有一些文档说明如何完成这项微不足道的任务或至少提供一个临时解决方法,那就太好了.如果有人可以提供有关如何执行此操作的一些指导,将不胜感激。我觉得我接近解决方案,但无法将其拼凑起来。
感谢您的帮助。
假设您正在使用内置的 DI 容器,这里是您可以完成此操作的一种方法。
在启动的 Configure 方法中引用您的种子方法 class,并将 IApplicationBuilder 对象作为参数而不是 DbContext 传递,如下所示:
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
//...
// Put this at the end of your configure method
DbContextSeedData.Seed(app);
}
接下来,修改您的种子方法以接受 IApplicationBuilder 实例。然后您将能够启动 DbContext 的一个实例,并执行您的种子操作,如下所示:
public static void Seed(IApplicationBuilder app)
{
// Get an instance of the DbContext from the DI container
using (var context = app.ApplicationServices.GetRequiredService<ApplicationDbContext>())
{
// perform database delete
context.Database.EnsureDeleted;
//... perform other seed operations
}
}
您还可以使用 Startup.cs ConfigureServices
方法使您的 ApplicationDbContext 可用(将 dbcontext 注册为服务):
public void ConfigureServices(IServiceCollection services)
{
var connectionString = Startup.Configuration["connectionStrings:DBConnectionString"];//this line is not that relevant, the most important thing is registering the DbContext
services.AddDbContext<ApplicationDbContext>(o => o.UseSqlServer(connectionString));
}
然后将您的 ApplicationDbContext 添加为您的 Configure
方法中的依赖项,该方法将调用您的种子扩展方法。
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, ApplicationDbContext myApplicationDbContext)
{
//...
myApplicationDbContext.Seed();
}
最后,seed 方法可以快速检查一个重要的 table,因为重新创建数据库可能太繁重了:
public void Seed()
{
//....
if(context.Countries.Any())
return;
//...
}
我希望它能帮助你或其他人,至少作为另一种选择。
如果您想从单独的 class 库中 运行 您的 EF 代码并在其中进行播种,您可以执行以下操作。这是使用 TSQL...
1) 创建一个新的 class 库。 使用 NuGet 添加以下依赖项...
Microsoft.AspNetCore
Microsoft.AspNetCore.Identity.EntityFrameworkCore
Microsoft.EntityFrameworkCore.SqlServer
Microsoft.EntityFrameworkCore.Tools
2) 将程序包管理器控制台指向该项目,然后 运行...
PM> add-migration Seeder01
然后...
PM> update-database
这会给你一个空迁移。
3) 将更新脚本编写为...
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Migrations;
using System;
using System.Collections.Generic;
using Microsoft.Extensions.Configuration;
using System.IO;
namespace Test02.Data.Migrations
{
public partial class Seeder01 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
string sql = string.Empty;
sql = "SET IDENTITY_INSERT State ON;";
sql += "Insert into State (Id, Name) values ";
sql += "(2, 'NSW'),";
sql += "(3, 'VIC'),";
sql += "(4, 'QLD'),";
sql += "(5, 'SA')";
sql += ";";
sql += "SET IDENTITY_INSERT State OFF;";
migrationBuilder.Sql(sql);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
string sql = string.Empty;
sql = "delete State;";
migrationBuilder.Sql(sql);
}
}
}
4) 使用...恢复到之前的迁移
PM> add-migration {PriorMigrationName}
重新加载种子迁移并更新数据库...
PM> add-migration Seeder01
PM> update-database