Synercoding.HostExtensions.EntityFramework
1.0.0-alpha02
This is a prerelease version of Synercoding.HostExtensions.EntityFramework.
dotnet add package Synercoding.HostExtensions.EntityFramework --version 1.0.0-alpha02
NuGet\Install-Package Synercoding.HostExtensions.EntityFramework -Version 1.0.0-alpha02
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Synercoding.HostExtensions.EntityFramework" Version="1.0.0-alpha02" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Synercoding.HostExtensions.EntityFramework --version 1.0.0-alpha02
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Synercoding.HostExtensions.EntityFramework, 1.0.0-alpha02"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Synercoding.HostExtensions.EntityFramework as a Cake Addin #addin nuget:?package=Synercoding.HostExtensions.EntityFramework&version=1.0.0-alpha02&prerelease // Install Synercoding.HostExtensions.EntityFramework as a Cake Tool #tool nuget:?package=Synercoding.HostExtensions.EntityFramework&version=1.0.0-alpha02&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Usages
Most of the tasks are build so the can be executed in sync and async code. Before calling Run
or RunAsync
on the IHost
, you can call the different extension methods.
If you are for example running a website using EntityFramework & migrations:
- You can call
ExecuteOnDevelopment
(from Synercoding.HostExtensions) with in it a call toMigrateDbContext
(from Synercoding.HostExtensions.EntityFramework) and execute the development seed method. - If the environment isn't development, but instead testing, then the testseed will be executed.
- And if non of those apply, only the migration will be executed.
public class Program
{
public static async Task Main(string[] args)
{
await CreateHostBuilder(args)
.Build()
.ExecuteOnDevelopment(host => host.MigrateDbContext<MyContext, Migrations.Configuration>(DevelopmentSeeder))
.ElseIf(
host => IsTestingEnvironment(host),
host => host.MigrateDbContext<MyContext, Migrations.Configuration>(TestingSeeder)
)
.Else(host => host.MigrateDbContext<MyContext, Migrations.Configuration>())
.RunAsync();
}
private static bool IsTestingEnvironment(IHost host)
=> host.Services.GetRequiredService<IHostEnvironment>().IsEnvironment("Testing");
private static Task DevelopmentSeeder(MyContext context, IServiceProvider services)
{
// Development seed method here
return Task.CompletedTask;
}
private static Task TestingSeeder(MyContext context, IServiceProvider services)
{
// Testing seed method here
return Task.CompletedTask;
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>();
});
}
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.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- EntityFramework (>= 6.4.4)
- Microsoft.Extensions.Hosting.Abstractions (>= 3.1.4)
- Polly (>= 7.2.0)
- Synercoding.HostExtensions (>= 1.0.0-alpha02)
- System.Data.SqlClient (>= 4.8.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0-alpha02 | 322 | 5/18/2020 |
1.0.0-alpha01 | 271 | 5/18/2020 |
- Added overloads for ElseExecuteHost, IHost and THost