EntityFrameworkCore.SqlServer.Seeding
0.9.1
See the version list below for details.
dotnet add package EntityFrameworkCore.SqlServer.Seeding --version 0.9.1
NuGet\Install-Package EntityFrameworkCore.SqlServer.Seeding -Version 0.9.1
<PackageReference Include="EntityFrameworkCore.SqlServer.Seeding" Version="0.9.1" />
paket add EntityFrameworkCore.SqlServer.Seeding --version 0.9.1
#r "nuget: EntityFrameworkCore.SqlServer.Seeding, 0.9.1"
// Install EntityFrameworkCore.SqlServer.Seeding as a Cake Addin #addin nuget:?package=EntityFrameworkCore.SqlServer.Seeding&version=0.9.1 // Install EntityFrameworkCore.SqlServer.Seeding as a Cake Tool #tool nuget:?package=EntityFrameworkCore.SqlServer.Seeding&version=0.9.1
This package allows you to seed the data to SQL Server database using pure SQL scripts but in a managed fashion similar to Entity Framework Core migrations.
Invoking the seeding
Install NuGet package to your project
dotnet add package EntityFrameworkCore.SqlServer.Seeding
Add script seeding to services collection and supply the connection string to the database
public void ConfigureServices(IServiceCollection services)
{
...
services.AddScriptSeeding(Configuration.GetConnectionString("EmployeesDatabase"));
...
}
Invoke the seeding in the pipeline by supplying the assembly where your scripts are sitting along with a folder under which scripts sit under project tree. The default value is "Seedings"
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
...
app.SeedFromScripts(typeof(EmployeesDatabaseContext).Assembly, "Seedings");
...
}
Adding new seeding script
As a first step you need to install global tool EntityFrameworkCore.SqlServer.Seeding.Tool which will help you add the seeding script to the project where you want to have your seeding scripts. I usually keep them together with migrations as a part of infrastructure.
dotnet tool install --global EntityFrameworkCore.SqlServer.Seeding.Tool
From a command line (cmd, PowerShell, bash…) navigate to project folder where you want your scripts to sit. Simply add the script by invoking the previously installed global tool
seeding add "Add_Initial_Employees" -o Seedings
This will create new file under Seedings folder in your project tree. Once you run the main project, seeding files will be executed and recorded in __SeedingHistory table
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.EntityFrameworkCore (>= 3.1.8)
- Microsoft.EntityFrameworkCore.Relational (>= 3.1.8)
- Microsoft.EntityFrameworkCore.SqlServer (>= 3.1.5)
- Microsoft.Extensions.Configuration (>= 3.1.8)
- Microsoft.Extensions.Configuration.Json (>= 3.1.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.