-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Draft version of SQLite implementation with integration test * Added a static reference for every table name in SQLite project, this is to keep all table names consistent across database types * Added SQLite migration test * Removed shouldly import * Assert.Null instead of Assert.NotNull on recording exception * Added publish package entry for SQLite * Forgot a prefix in QuartzTriggerConfiguration * Added integration test for SQLite which ensure the created dbcontext can be used as a JobStore * Removed the static table name references from the Entities * Fixed rebase merge error * Capitalised all column names for SQLite * Changed the signature of UseSQLite to have optional prefix and schema parameters * Removed nullable strings from the EntityConfiguration and corrected readonly name format * Organised the testing files into individual folder per database type * Changed signature for the UsePostgreSql() to use prefix and schema as parameters * Changed all column names to uppercase for MySQL entity configurations * Changed signature for the UseMySql() to use prefix as parameter * Corrected namespace for MySql configurations * Corrected namespace for MySql configurations Changed signature for the UseSqlServer() to use prefix and schema as parameters * Removed obsolete UsePrefix and UseSchema * Updated Readme to reflect current supported databases and made it more clear with examples * Updated the csproj of SQLite project * Made all name spacing consistent to just `AppAny.Quartz.EntityFrameworkCore.Migrations.{{ Provider }}` * Removed extra line * Added clarification that prefix and schema can be passed as parameters * Added default parameter value for schema in UseSqlite() and UseSqlServer()
- Loading branch information
1 parent
31cf2dd
commit b78888b
Showing
49 changed files
with
1,185 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
...re.Migrations.MySql/AppAny.Quartz.EntityFrameworkCore.Migrations.MySql.csproj.DotSettings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=entitytypeconfigurations/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.