AdoCacheEngine 2.0.0-beta.4

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

// Install AdoCacheEngine as a Cake Tool
#tool nuget:?package=AdoCacheEngine&version=2.0.0-beta.4&prerelease                

ACE - ADO Cache Engine

https://github.com/saklis/ado-cache-engine

ADO Cache Engine is an ORM (Object-relational mapping) tool for MS SQL Server build around the idea of caching all the required data in RAM memory of the host to decrease data access times.

ACE can be used as your standard ORM, but its main strength lies in storing data on-site where you can make use of indexing tools it provides. It's designed to be used as a provider for single-point data layer solutions for web applications and service-based solutions.

Features

  • No dependency on external libraries.
  • Unlimited number of tables.
  • Easy-to-use caching API.
  • Caching subset of data using lambda expression syntax.
  • Caching data related to data already cached using lambda expression syntax relation definition.
  • CRUD operations support.
  • Live write operation on DB - Engine reflects any changes done on its items to the database, ensuring they're up to date.
  • Indexing functionality for faster querying.
  • Automatic generation of model classes using T4 scripts through ACE ADO Cache Engine model generation.
  • Now with dedicated non-cached ORM tools!

Compatibility

  • C# 7.0 and greater
  • MS SQL Server 2008 R2 and greater (older version was not tested, but should be compatible)
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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on AdoCacheEngine:

Package Downloads
AdoCacheEngineModelGeneration

T4 scripts to generate model classes compatibile with ACE ADO Cache Engine. To use it provide correct data base configuration in DbConfig.tt file and save changes - POCO files will be generated automatically.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0-beta.6 164 6/17/2021
2.0.0-beta.5 147 6/16/2021
2.0.0-beta.4 153 6/16/2021
2.0.0-beta.3 211 11/20/2020
2.0.0-beta.2 200 11/20/2020
2.0.0-beta.1 263 11/19/2020
1.13.3 1,004 10/1/2020
1.12.4 939 1/13/2020
1.12.3 975 10/24/2019
1.12.2 989 10/18/2019
1.12.1 981 9/26/2019
1.12.0 938 9/26/2019
1.11.1 969 9/2/2019
1.11.0 955 8/26/2019
1.10.3 957 7/25/2019
1.10.2 1,461 6/26/2019
1.10.1 1,015 5/23/2019
1.10.0 1,292 4/23/2019

2.0.0
* CRUD ORM implementation to interact with db directly without interacting with caching mechanics.
* Change target to NetStandard 2.0

1.13.3
* Better handling of expression in LoadWith() and LoadRelatedWith() to support data format localizations and prevent SQL injections

1.12.4
* Methods Update and Delete now see any resulted affected rows greater than 0 (zero) as valid.

1.12.3
* Fix a problem when external object was used in LoadWhere() and it was incorrectly parsed into SQL statement.

1.12.2
* Multithreaded optimalization of LoadRelatedWith() method.

1.12.1
* FIX for IS NULL and IS NULL parser.

1.12.0
* Added support for IS NULL and IS NOT NULL is LoadWhere() and LoadRelatedWIth().

1.11.1
* Fix for wrong type detection in LoadRelatedWith() in situation when name of one table was completly included in other table name.

1.11.0
* Added support for complex expression in LoadRelatedWith() method.

1.10.3
* Insert and Update statement are now properly generated using Parameters.

1.10.2
* Fix for inserting data into tables that don't have Primary Key based on auto-increment/identity.

1.10.1
* Better error reporting in case of missing properties in model class.