AdoCacheEngine 1.13.3

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

// Install AdoCacheEngine as a Cake Tool
#tool nuget:?package=AdoCacheEngine&version=1.13.3

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 it main strength lies in storing data on-site where you can make us 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.
  • Can work in non-cache mode if you really try.
  • Automatic generation of model classes using T4 scripts through ACE ADO Cache Engine model generation.

Compatibilty

  • C# 7.0 and greater
  • MS SQL Server 2008 R2 and greater (older version was not tested, but should be compatibile)
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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 162 6/17/2021
2.0.0-beta.5 144 6/16/2021
2.0.0-beta.4 151 6/16/2021
2.0.0-beta.3 208 11/20/2020
2.0.0-beta.2 197 11/20/2020
2.0.0-beta.1 258 11/19/2020
1.13.3 993 10/1/2020
1.12.4 930 1/13/2020
1.12.3 972 10/24/2019
1.12.2 980 10/18/2019
1.12.1 978 9/26/2019
1.12.0 936 9/26/2019
1.11.1 966 9/2/2019
1.11.0 952 8/26/2019
1.10.3 954 7/25/2019
1.10.2 1,457 6/26/2019
1.10.1 1,012 5/23/2019
1.10.0 1,289 4/23/2019

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.