SLiDS.Storage 0.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package SLiDS.Storage --version 0.1.0
NuGet\Install-Package SLiDS.Storage -Version 0.1.0
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="SLiDS.Storage" Version="0.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SLiDS.Storage --version 0.1.0
#r "nuget: SLiDS.Storage, 0.1.0"
#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 SLiDS.Storage as a Cake Addin
#addin nuget:?package=SLiDS.Storage&version=0.1.0

// Install SLiDS.Storage as a Cake Tool
#tool nuget:?package=SLiDS.Storage&version=0.1.0

What is?

SLiDS - Simple Lightweight Data Searching Library

SLiDS can be used for quick access to data. Data can be placed in an SQL database or memory (Runtime). It is also possible to cache data from an SQL database in memory.

Dependecies

  • .NET Statdard 2.1
  • System.Data.SqlClient 4.8.1

Interfaces

Main
  • IRepository (IAsyncRepository) - Generic interface for the repository with the most common methods
  • IDbRepository (IAsyncDbRepository) - Generic interface for the repository for placing data in a database, inherited from IRepository (IAsyncRepository)
  • ICachadRepository - Generic interface for the repository for caching in-memory data from a database, inherited from IRepository
Common
  • IObject - Generic interface for an object stored in the repository
  • IDbObject - Generic interface for an object stored in the database repository, inherited IObject
  • ICriteria - Main interface for describing conditions for selecting objects in the database

Enums

  • ColumnType - Enums of the available data types for defining the mapping of object properties to database columns

Implementations

IRepository/IAsyncRepository (and inherited interfaces) implementations
  • MemoryContext - ... TODO
  • DbContext - ... TODO
  • CachedDbContext - ... TODO
IObject & IDbObject implementations

The description of the implementations for the interfaces you want to place classes stored in the entity data model

ICriteria implimentations
  • EmptyCriteria - Implimentation is empty criteria. The SQL WHERE-expression inserted expression "1 = 1". Simple access is performed as follows: var criteria = ICriteria.Empty
  • OrCriteria - ... TODO
  • AndCriteria - ... TODO
  • EqCriteria - ... TODO
  • InCriteria - ... TODO
  • LikeCriteria - ... TODO
  • NotLikeCriteria - ... TODO

Other services

  • DbWithoutObjectContext - Service for getting data from a database table of unknown structure
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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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.

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.2.0 880 8/28/2020
0.1.2 901 8/8/2020
0.1.1 792 8/7/2020
0.1.0 860 8/6/2020