AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL 0.1.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. 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.1
NuGet\Install-Package AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL -Version 0.1.1
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.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL --version 0.1.1
#r "nuget: AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL, 0.1.1"
#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 AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL as a Cake Addin
#addin nuget:?package=AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL&version=0.1.1

// Install AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL as a Cake Tool
#tool nuget:?package=AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL&version=0.1.1

EntityFrameworkCore migrations for Quartz.NET Job Scheduler

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

public class DatabaseContext : DbContext
{
  public DatabaseContext(DbContextOptions<DatabaseContext> options)
  : base(options)
  {
  }

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

Then add EntityFrameworkCore with Quartz.NET schema migration 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 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.

NuGet packages (2)

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

Package Downloads
Elsa.Quartz.EntityFrameworkCore.PostgreSql

Provides EF Core migrations for Quartz.NET.

Vnesok.Persistence

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL:

Repository Stars
elsa-workflows/elsa-core
A .NET workflows library
Version Downloads Last updated
0.5.0 114,191 1/8/2024
0.4.0 252,588 1/1/2023
0.3.0 13,510 12/15/2022
0.2.0 319 12/15/2022
0.1.18 335 12/10/2022
0.1.17 44,931 1/21/2022
0.1.16 2,466 12/14/2021
0.1.15 3,593 7/24/2021
0.1.13 1,087 4/29/2021
0.1.12 423 4/12/2021
0.1.11 314 4/12/2021
0.1.10 3,134 3/29/2021
0.1.8 700 2/26/2021
0.1.7 1,313 2/16/2021
0.1.6 379 2/16/2021
0.1.4 1,364 1/24/2021
0.1.3 407 1/23/2021
0.1.2 692 1/22/2021
0.1.1 611 1/22/2021
0.1.0 428 1/9/2021