Skip to content

Commit

Permalink
Readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Pouwels committed Feb 28, 2023
1 parent d68e047 commit 7a6c1d8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
**Content**

- [General](#general)
- [Example](#example
- [Example](#example)

## General

[![Nuget](https://img.shields.io/nuget/v/ZimLabs.Settings.Sqlite)](https://www.nuget.org/packages/ZimLabs.Settings.Sqlite) [![GitHub release (latest by date)](https://img.shields.io/github/v/release/InvaderZim85/ZimLabs.Settings.Sqlite)](https://github.com/InvaderZim85/ZimLabs.Settings.Sqlite/releases)

This library provides functions to manage settings using a SQLite database.

The settings are stored as a "Key" - "Value" pair.
Expand All @@ -25,6 +27,7 @@ var settingsManager = new SettingsManager("NameOfMyDatabase");
var entry = await settingsManager.AddEntryAsync(1, "TheValue", "Some description");

// Add another entry
// Note: If you specify an id, it will be removed during the add process
var secondEntry = await settingsManager.AddEntryAsync(new SettingsEntry
{
Key = 1,
Expand Down

0 comments on commit 7a6c1d8

Please sign in to comment.