feat: add in-memory database support via appsettings UseInMemoryDb flag

- Introduced conditional EF Core configuration to support InMemoryDatabase for testing or lightweight runs.
- Added `UseInMemoryDb` config flag read from appsettings.
- Retained SQL Server as the default when the flag is false.
- Added missing Quartz namespace import.
This commit is contained in:
Developer 02
2025-11-04 13:44:39 +01:00
parent b5cd42b6fa
commit 4997f7d75c
3 changed files with 9 additions and 3 deletions

View File

@@ -17,5 +17,6 @@
"EnvelopeReceiverReadOnly": [ "TBSIG_ENVELOPE_RECEIVER_READ_ONLY_UPD" ],
"Receiver": [],
"EmailTemplate": [ "TBSIG_EMAIL_TEMPLATE_AFT_UPD" ]
}
},
"UseInMemoryDb": true
}