Telerik.DataAccess.Fluent 2014.1.403.2

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Telerik.DataAccess.Fluent --version 2014.1.403.2
NuGet\Install-Package Telerik.DataAccess.Fluent -Version 2014.1.403.2
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="Telerik.DataAccess.Fluent" Version="2014.1.403.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Telerik.DataAccess.Fluent --version 2014.1.403.2
#r "nuget: Telerik.DataAccess.Fluent, 2014.1.403.2"
#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 Telerik.DataAccess.Fluent as a Cake Addin
#addin nuget:?package=Telerik.DataAccess.Fluent&version=2014.1.403.2

// Install Telerik.DataAccess.Fluent as a Cake Tool
#tool nuget:?package=Telerik.DataAccess.Fluent&version=2014.1.403.2

The Telerik.DataAccess.Fluent NuGet package is designed for projects containing classes that are stored using Telerik Data Access. It can be utilized for defining your data access model using the code-only Fluent Mapping.

It provides the assembly references and project enhancements made by the Telerik Data Access Enhancer tool during the build process, required by Telerik Data Access runtime.

If you need a NuGet package for a project only consuming Telerik Data Access model from another assembly, the Telerik.DataAccess.Core NuGet package which contains the Telerik Data Access runtime assemblies necessary to work with Telerik Data Access persistent objects is sufficient and can be used instead.

Telerik Data Access helps defining mapping and executing create, retrieve, update and delete operations for your data access classes and database tables. It allows you to consume stored procedures and functions.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Telerik.DataAccess.Fluent:

Package Downloads
OpenAccess.CodeFirst

This NuGet Package is deprecated since the product has been renamed to Telerik Data Access. Please use Telerik.DataAccess.Fluent instead.

Telerik.DataAccess.Fluent.Sample The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This sample demonstrates the use of the Telerik DataAccess Code First (also known as Fluent Mapping) support.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Telerik.DataAccess.Fluent:

Repository Stars
aspose-words/Aspose.Words-for-.NET
Aspose.Words for .NET examples, plugins and showcases
KalikoCMS/KalikoCMS.Core
Open source content management system (CMS) for the ASP.NET platform.
Version Downloads Last updated
2018.0.1127.1 137,484 12/19/2018
2018.0.911.1 12,853 9/20/2018
2016.2.822.1 198,259 9/29/2016
2016.1.224.1 39,366 3/21/2016
2015.3.1221.1 45,855 12/23/2015
2015.3.926.1 24,677 9/30/2015
2015.2.624.2 20,788 9/18/2015
2015.2.624.1 18,312 6/24/2015
2015.1.225.2 5,485 9/18/2015
2015.1.225.1 30,690 2/25/2015
2014.3.1209.2 4,139 9/18/2015
2014.3.1209.1 6,236 12/15/2014
2014.3.1027.1 6,057 10/27/2014
2014.2.918.1 6,142 9/24/2014
2014.2.711.1 12,045 7/21/2014
2014.2.617.2 4,102 6/18/2014
2014.1.403.2 6,105 4/9/2014
2014.1.225.3 4,919 3/12/2014
2014.1.225.2 5,092 2/26/2014
2013.3.1320.1 22,228 1/28/2014

New
- NuGets: Telerik.DataAccess.Core NuGet package now includes Telerik.OpenAccess.40.Extensions.dll - Telerik.OpenAccess.40.Extensions.dll that will be added automatically as reference if target project is using .Net 4.0 or later.
- Database default values in Fluent API - Database First users of the Code-Only mapping can now specify whether a column has a default value calculated by the database server. This could be done using the .HasDefaultValue() extension method.
- Bulk Select integrated in LINQ statements - The recently released functionality for Bulk Select based on a set of object keys is now fully integrated into the Data Access LINQ engine, which means that joining data from different systems is now easier and less error prone.
- Support for MS SQL Server 2014 - Data Access is now fully tested and can be used in production with MS SQL Server 2014 RTM.
- Dynamic detection of Azure database so that missing Backend value is deduced correctly - When an Azure database is specified via connection string settings (app.config/web.config), and no explicit backend is specified in the BackendConfiguration, the missing value is no longer given as MSSQL, but Azure is used. This eases the transition between the two backends.
- MariaDB support upgraded to 10.0.10 - Data Access is now tested with the latest version (at the release date) of MariaDB - 10.0.10

Fixed
- Runtime: Too frequent Garbage Collection under heavy load with a small connection pool - When the connection pool is empty (no more connections are available), activities on the server used to get blocked until a connection gets available again. This situation can arise when too many requests are attempted in parallel for the given connection pool size. In such case, the connection pool thread schedules a System.GC.Collect(1) based on a predefined period in seconds in order to free non-disposed connections that can be collected. This period is now changed to 31 seconds to improve the overall performance.
- Runtime: IndexOutOfRangeException in OpenAccessRuntime.common.GenericState due to metadata mismatch - In some complex scenarios, it happened that an IndexOutOfRangeException was thrown because the state and the metadata were out of sync. Now this exception is avoided.
- Runtime: In presence of server side exceptions, cleanup of statements, readers and connections could fail - When a lock conflict occurs, the reader, statement and connection were sometimes incorrectly kept active and not cleaned up.
- LINQ: OR expressions in filters producing invalid SQL in Oracle when vertical inheritance is used - Invalid SQL was generated for LINQ queries with filters chained using OR, vertical inheritance and target database server Oracle.
- Runtime: Highlow key generator using too many connections - The high-low key generator was always taking a connection out of the pool even if that was not necessary.