Calebs.KeyValueRepo.SQLite 0.5.0-ci-44

This is a prerelease version of Calebs.KeyValueRepo.SQLite.
dotnet add package Calebs.KeyValueRepo.SQLite --version 0.5.0-ci-44
NuGet\Install-Package Calebs.KeyValueRepo.SQLite -Version 0.5.0-ci-44
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="Calebs.KeyValueRepo.SQLite" Version="0.5.0-ci-44" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Calebs.KeyValueRepo.SQLite --version 0.5.0-ci-44
#r "nuget: Calebs.KeyValueRepo.SQLite, 0.5.0-ci-44"
#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 Calebs.KeyValueRepo.SQLite as a Cake Addin
#addin nuget:?package=Calebs.KeyValueRepo.SQLite&version=0.5.0-ci-44&prerelease

// Install Calebs.KeyValueRepo.SQLite as a Cake Tool
#tool nuget:?package=Calebs.KeyValueRepo.SQLite&version=0.5.0-ci-44&prerelease

KeyValueRepo.SQLite

KeyValueRepo Logo

.github/workflows/dev-ci-sql-lite.yml .github/workflows/main-publish-sql-lite.yml NuGet NuGet .github/workflows/working-branches.yml

A SqlLite implementation of a generic the KeyValueRepo interface for Key Value storage operations. Ideal for simple key-values that might migrate to SQL Server or NoSQL - a quick and easy way to create a KeyValue store.

By default, this library ships with an in-memory implementation. KeyValueInMemory which implements the IKeyValueRepo interface.

Installing KeyValueRepo

You should install the KeyValueRepo with NuGet:

Install-Package Calebs.KeyValueRepo.SQLite

Or via the .NET Core command line interface:

dotnet add package Calebs.KeyValueRepo.SQLite

Either command, from Package Manager Console or .NET Core CLI, will download and install Calebs.KeyValueRepo and all required dependencies.

Contributing

  • PRs should be against the Develop branch.
  • Merged PRs to Develop will trigger a [version]-ci-[buildnumber] deployment to nuget, assuming all unit tests pass.
  • Merged PRs to Main will trigger a [version] deployment to nuget, assuming all of the tests pass.

Versioning

The package version is defined in the KeyValueSqlLiteRepo.csproj file, using .NET SDK style structure. We follow semantic versioning for this package. Implementations should match Major releases with KeyValueRepo package.

Methods in IKeyValueRepo

  • Get<T>(string Id)
  • Get<T>(int Id) ⇒ Get<T>(string Id)
    • Note: This method has a default implementation that performs a ToString() on the Id and calls the Get<T>(string Id) method.
  • GetAll<T>()
  • Update<T>(string Id, T object)
  • Update<T>(int Id, T object) ⇒ Update(string Id, T object)
    • Note This method has a default implementation that performs a ToSTring() on the int Id and calls the Update<T>(string Id, T object) method.

Release History & Development Goals

  • 0.1.0 - initial release (in Memory)
  • 0.2.0 - added SqlLite Implementation
  • ✔ SQLite Nuget Package

Future Goals


  • New Feature: KVR Meta Objects
  • New Feature: Base Unit Tests via Nuget
  • New Repo: Azure Tables Implementation
  • New Repo: Sql Server Implementation
  • New Repo: Azure CosmoDB Implementation
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
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
0.5.0-ci-44 103 1/8/2024
0.5.0-ci-43 57 1/8/2024
0.4.0-ci-42 57 1/8/2024
0.4.0-ci-41 66 1/7/2024
0.4.0-ci-40 62 1/4/2024
0.4.0-ci-37 61 1/4/2024
0.4.0-ci-36 53 1/4/2024
0.4.0-ci-12 54 1/3/2024
0.1.0-ci-9 70 12/30/2023
0.1.0-ci-8 73 12/30/2023
0.1.0-ci-7 65 12/29/2023
0.1.0-ci-6 109 12/29/2023
0.1.0-ci-11 67 12/31/2023
0.1.0-ci-10 61 12/30/2023