ServantSoftware.SettingsOnEF.Common 1.0.0.40

dotnet add package ServantSoftware.SettingsOnEF.Common --version 1.0.0.40
NuGet\Install-Package ServantSoftware.SettingsOnEF.Common -Version 1.0.0.40
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="ServantSoftware.SettingsOnEF.Common" Version="1.0.0.40" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ServantSoftware.SettingsOnEF.Common --version 1.0.0.40
#r "nuget: ServantSoftware.SettingsOnEF.Common, 1.0.0.40"
#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 ServantSoftware.SettingsOnEF.Common as a Cake Addin
#addin nuget:?package=ServantSoftware.SettingsOnEF.Common&version=1.0.0.40

// Install ServantSoftware.SettingsOnEF.Common as a Cake Tool
#tool nuget:?package=ServantSoftware.SettingsOnEF.Common&version=1.0.0.40

ServantSoftware.SettingsOnEF

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.

Build Status Version License Nuget

A specialized JSON settings manager uses the JSON EF Core Provider

Table of Contents

Features

  • 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.

Getting Started

Prerequisites

  • .NET 7 or higher
  • An existing EF Core provider to use for storage

Installation

  1. Install the ServantSoftware.SettingsOnEF package via NuGet:
dotnet add package ServantSoftware.SettingsOnEF
Package Name Release (NuGet)
ServantSoftware.SettingsOnEF.Common NuGet
ServantSoftware.SettingsOnEF NuGet

Usage

  1. 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; }
}
  1. 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.

Contributing

We welcome contributions to SettingsOnEF! Here's how you can help:

  1. Fork the repository on GitHub.
  2. Clone your fork locally.
  3. Commit your changes on a dedicated branch.
  4. Push your branch to your fork.
  5. Submit a pull request from your fork to the main repository.
  6. Engage in the review process and address feedback.

Please read our CONTRIBUTING.md for details on the process and coding standards.

Thread Safety Policy

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.

Responsibilities of the Consumer

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 SettingsManager or JsonSettingsManager. 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 SettingsManager or JsonSettingsManager without proper synchronization, as this can lead to data corruption and concurrency exceptions.

  • Static Access: Similarly, static methods or properties that internally use a shared DbContext instance should be avoided unless they are designed to handle concurrent access securely.

Conclusion

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.

Issues

Feel free to submit issues and enhancement requests.

License

SettingsOnEF is licensed under the MIT License. See LICENSE for more information.

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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on ServantSoftware.SettingsOnEF.Common:

Package Downloads
ServantSoftware.SettingsOnEF

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0.40 120 3/27/2024
1.0.0.39 115 3/17/2024
1.0.0.38 114 3/16/2024
1.0.0.36 232 11/21/2023
1.0.0.35 217 10/24/2023
1.0.0.34 129 10/23/2023
1.0.0.33 119 10/23/2023
1.0.0.32 128 10/23/2023
1.0.0.31 116 10/23/2023
1.0.0.30 128 10/23/2023
1.0.0.29 127 10/23/2023
1.0.0.28 142 10/23/2023
1.0.0.27 134 10/23/2023
1.0.0.26 123 10/23/2023
1.0.0.25 129 10/10/2023
1.0.0.24 136 10/8/2023
1.0.0.23 131 10/8/2023
1.0.0.22 136 9/27/2023
1.0.0.21 135 9/27/2023
1.0.0.20 139 9/26/2023
1.0.0.19 136 9/24/2023
1.0.0.18 125 9/24/2023
1.0.0.17 128 9/24/2023
1.0.0.16 137 9/23/2023