EFCore.Seeder
2.0.0
See the version list below for details.
dotnet add package EFCore.Seeder --version 2.0.0
NuGet\Install-Package EFCore.Seeder -Version 2.0.0
<PackageReference Include="EFCore.Seeder" Version="2.0.0" />
paket add EFCore.Seeder --version 2.0.0
#r "nuget: EFCore.Seeder, 2.0.0"
// Install EFCore.Seeder as a Cake Addin #addin nuget:?package=EFCore.Seeder&version=2.0.0 // Install EFCore.Seeder as a Cake Tool #tool nuget:?package=EFCore.Seeder&version=2.0.0
EFCore.Seeder
A library to seed databases from CSV files, using .NET Core 2.0 and Entity Framework Core 2.2.1
A project based on dpaquette/EntityFramework.Seeder, using EntityFramework Core instead of EF6, plus some improvements on how to handle resource files.
How to install
Install-Package EFCore.Seeder
How to use
Configuration and setup
This library requires all resource files (CSV files) to be added as Embedded Resource
in a runtime available assembly. Once that requirement is met, the seeder needs to be configured using:
SeederConfiguration.ResetConfiguration(assembly: ResourceAssembly);
In order to make it easier, you can reference a type in that assembly and let Reflection take care of retrieving the assembly instance
SeederConfiguration.ResetConfiguration(assembly: typeof(<Assembly Class or Type>).GetTypeInfo().Assembly);
Also, if the format for the CSV files needs to be changed, or the CsvHelper configuration needs some tweaking, this is where we need to pass in the new parameters:
SeederConfiguration.ResetConfiguration(csvConfiguration: csvConfiguration, manifestConfiguration: manifestConfiguration, assembly: typeof(PayrollContext).GetTypeInfo().Assembly);
Where csvConfiguration
is an instance of CsvConfiguration
, from the CsvHelper
library, and manifestConfiguration
is an instance of ManifestConfiguration
. The last one is just a way to format the embedded resource file names to make them easy to find in the assembly. You can store the configuration in a json file and load it when setting everything up.
"manifestConfiguration": {
"delimiterFieldName": "{delimiter}",
"resourceFieldName": "{resource}",
"extensionFieldName": "{extension}",
"format": "{delimiter}{resource}{delimiter}{extension}",
"delimiter": ".",
"extension": "csv"
}
Usage
Once the Seeder is configured, all we need to do is call the appropiate extension method when accessing a DbSet for a particular type.
Let's say we have a DbContext with a Products
DbSet. We could do the following:
dbContext.Products.SeedDbSetIfEmpty(nameof(context.Products));
This would assume that we have a Products.csv
file in the configured assembly, with all the required information to load into the Products entity.
Also, please note that if we're going to update information as well as insert it, the Products
entity must implement the IEquatable<T>
interface, so we can use product.Equal(other)
when finding the right entity to update. This is due to Entity Framework Core not having an AddOrUpdate
method (as to this moment, maybe this has changed in EF Core 2.0).
Please check out the test projects for more information on how to use the library.
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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- CsvHelper (>= 12.1.2)
- Microsoft.EntityFrameworkCore (>= 2.2.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on EFCore.Seeder:
Package | Downloads |
---|---|
Cortside.Common.Testing.EntityFramework
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.