ServantSoftware.SettingsOnEF.Json 1.0.0.40

dotnet add package ServantSoftware.SettingsOnEF.Json --version 1.0.0.40
NuGet\Install-Package ServantSoftware.SettingsOnEF.Json -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.Json" 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.Json --version 1.0.0.40
#r "nuget: ServantSoftware.SettingsOnEF.Json, 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.Json as a Cake Addin
#addin nuget:?package=ServantSoftware.SettingsOnEF.Json&version=1.0.0.40

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

ServantSoftware.SettingsOnEF.Json

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

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 project

Installation

  1. Install the ServantSoftware.SettingsOnEF.Json package via NuGet:
dotnet add package ServantSoftware.SettingsOnEF.Json
Package Name Release (NuGet)
ServantSoftware.SettingsOnEF.Json 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 JsonSettingsManager to retrieve and update settings:
var settingsManager = new JsonSettingsManager("MyCompanyName", "MyProductName");

var setting = settingsManager.Get<SomeSetting>();
setting.SomeProperty = "NewValue";
settingsManager.Update(setting);

Your application settings will be stored under Environment.SpecialFolder.CommonApplicationData. For example on Windows, the default location in this sample will be:

C:\ProgramData\MyCompanyName\MyProductName\Settings

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.

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 net7.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0.40 85 3/27/2024
1.0.0.39 99 3/17/2024
1.0.0.38 93 3/16/2024
1.0.0.36 210 11/21/2023
1.0.0.35 209 10/24/2023
1.0.0.34 120 10/23/2023
1.0.0.33 115 10/23/2023
1.0.0.32 111 10/23/2023
1.0.0.31 116 10/23/2023
1.0.0.30 116 10/23/2023
1.0.0.29 104 10/23/2023
1.0.0.28 118 10/23/2023
1.0.0.27 119 10/23/2023
1.0.0.26 108 10/23/2023
1.0.0.25 132 10/10/2023
1.0.0.24 123 10/8/2023
1.0.0.23 114 10/8/2023
1.0.0.22 119 9/27/2023
1.0.0.21 113 9/27/2023
1.0.0.20 127 9/26/2023
1.0.0.19 121 9/24/2023
1.0.0.18 104 9/24/2023
1.0.0.17 109 9/24/2023
1.0.0.16 127 9/23/2023
1.0.0.15 125 9/22/2023
1.0.0.14 128 9/19/2023
1.0.0.13 124 9/19/2023
1.0.0.12 117 9/19/2023
1.0.0.11 120 9/19/2023
1.0.0.10 116 9/19/2023
1.0.0.9 121 9/19/2023
1.0.0.8 123 9/19/2023