AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL 0.1.3

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL --version 0.1.3
                    
NuGet\Install-Package AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL -Version 0.1.3
                    
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="AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL" Version="0.1.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL" Version="0.1.3" />
                    
Directory.Packages.props
<PackageReference Include="AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL --version 0.1.3
                    
#r "nuget: AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL, 0.1.3"
                    
#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.
#:package AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL@0.1.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL&version=0.1.3
                    
Install as a Cake Addin
#tool nuget:?package=AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL&version=0.1.3
                    
Install as a Cake Tool

EntityFrameworkCore migrations for Quartz.NET

Nuget

This library handles schema migrations for Quartz.NET using EntityFrameworkCore migrations toolkit with one line of configuration

Supported drivers

Feel free to contribute another drivers support

Usage

# Configure DbContext
public class DatabaseContext : DbContext
{
  // ...

  protected override void OnModelCreating(ModelBuilder modelBuilder)
  {
    // Adds Quartz.NET PostgreSQL schema to EntityFrameworkCore
    modelBuilder.AddQuartz(builder => builder
      .UsePostgres()
      .UseSchema("quartz")
      .UseNoPrefix());
  }
}

# Configure Quartz.NET
storeOptions.UsePostgres(postgresOptions =>
{
  postgresOptions.UseDriverDelegate<PostgreSQLDelegate>();
  postgresOptions.ConnectionString = ...;
  postgresOptions.TablePrefix = ...;
});

Then add EntityFrameworkCore migration with Quartz.NET schema dotnet ef migrations add AddQuartz and:

  • Add in-process migration using databaseContext.Database.MigrateAsync()
  • Add out-of-process migration using dotnet ef database update
  • Extract SQL for your migration tool dotnet ef migrations script PreviousMigration AddQuartz
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL:

Package Downloads
Elsa.Quartz.EntityFrameworkCore.PostgreSql

Provides EF Core migrations for Quartz.NET.

CucurbIT.Infrastructure.Jobs.Persistence

Package Description

Vnesok.Persistence

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.5.1 2,937,372 4/29/2024
0.5.0 330,544 1/8/2024
0.4.0 284,395 1/1/2023
0.3.0 19,555 12/15/2022
0.2.0 601 12/15/2022
0.1.18 491 12/10/2022
0.1.17 56,746 1/21/2022
0.1.16 2,808 12/14/2021
0.1.15 3,982 7/24/2021
0.1.13 1,271 4/29/2021
0.1.12 612 4/12/2021
0.1.11 501 4/12/2021
0.1.10 3,702 3/29/2021
0.1.8 942 2/26/2021
0.1.7 1,517 2/16/2021
0.1.6 559 2/16/2021
0.1.4 1,556 1/24/2021
0.1.3 600 1/23/2021
0.1.2 970 1/22/2021
0.1.1 796 1/22/2021
0.1.0 620 1/9/2021