An EF Core extension for centralizing application settings in the database. Each setting class corresponds to a table, with each table having a single-row configuration.
A specialized JSON settings manager uses the JSON EF Core Provider
- Easy Setup: Integrate with your existing EF Core projects seamlessly.
- Centralized Settings: Store and manage your app settings in a unified manner.
- Single-row Configurations: Each setting class corresponds to a table with a unique configuration row.
- .NET 7 or higher
- An existing EF Core provider to use for storage
- Install the
ServantSoftware.SettingsOnEFpackage via NuGet:
dotnet add package ServantSoftware.SettingsOnEF
| Package Name | Release (NuGet) |
|---|---|
ServantSoftware.SettingsOnEF.Common |
|
ServantSoftware.SettingsOnEF |
- Define your settings class and mark it with the SettingsEntity attribute. Here is an example:
namespace SettingsOnEF.Tests.Test_Classes;
[SettingsEntity]
public class SomeSetting
{
public string SomeProperty { get; set; }
}- Use the Get and Update methods from SettingsManager to retrieve and update settings:
var settingsManager = new SettingsManager(contextBuilder => contextBuilder.UseSqlite($"Data Source=InMemorySample;Mode=Memory;Cache=Shared"));
var setting = settingsManager.Get<SomeSetting>();
setting.SomeProperty = "NewValue";
settingsManager.Update(setting);For more detailed documentation, check our Wiki.
We welcome contributions to SettingsOnEF! Here's how you can help:
- Fork the repository on GitHub.
- Clone your fork locally.
- Commit your changes on a dedicated branch.
- Push your branch to your fork.
- Submit a pull request from your fork to the main repository.
- Engage in the review process and address feedback.
Please read our CONTRIBUTING.md for details on the process and coding standards.
SettingsOnEF leverages Entity Framework Core (EF Core) for managing application settings storage. It's important to note that DbContext, a fundamental part of EF Core, is not thread-safe. This means that instances of DbContext, and by extension, instances of SettingsManager and JsonSettingsManager provided by SettingsOnEF, should not be accessed concurrently from multiple threads.
To ensure the integrity and reliability of your application, it is the consumer's responsibility to manage the thread-safe usage of SettingsOnEF. Here are some guidelines to help you avoid common pitfalls related to threading:
-
Scoped Instances: In web applications, particularly those built with ASP.NET Core, utilize dependency injection to create scoped instances of
SettingsManagerorJsonSettingsManager. This ensures that each HTTP request receives its instance, effectively isolating individual requests from one another. -
Synchronization: For applications where SettingsOnEF might be accessed concurrently in a multi-threaded scenario, implement appropriate synchronization mechanisms. For example, you can use locks,
SemaphoreSlim, or other synchronization primitives to control access to SettingsOnEF instances. This is crucial for batch operations, background services, or any application part that runs in parallel threads. -
Immutable Settings Patterns: Consider adopting a pattern where settings are loaded once at the beginning of an operation and treated as read-only for the duration of that operation. This approach can reduce the need for synchronization but requires a design that accommodates potentially stale settings if they are updated while the application is running.
-
Singleton Pattern: Avoid using a single, application-wide instance of
SettingsManagerorJsonSettingsManagerwithout proper synchronization, as this can lead to data corruption and concurrency exceptions. -
Static Access: Similarly, static methods or properties that internally use a shared
DbContextinstance should be avoided unless they are designed to handle concurrent access securely.
By adhering to these guidelines and designing your application with thread safety in mind, you can effectively mitigate concurrency-related issues while using SettingsOnEF. Remember, managing thread safety is a shared responsibility between the library and its consumers. If your application scenario requires concurrent access to SettingsOnEF, planning and implementing a thread-safe strategy is essential for maintaining data integrity and application stability.
Feel free to submit issues and enhancement requests.
SettingsOnEF is licensed under the MIT License. See LICENSE for more information.