Suid.OpenToolbox.DataAccessLayer 6.0.1.5

dotnet add package Suid.OpenToolbox.DataAccessLayer --version 6.0.1.5
NuGet\Install-Package Suid.OpenToolbox.DataAccessLayer -Version 6.0.1.5
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="Suid.OpenToolbox.DataAccessLayer" Version="6.0.1.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Suid.OpenToolbox.DataAccessLayer --version 6.0.1.5
#r "nuget: Suid.OpenToolbox.DataAccessLayer, 6.0.1.5"
#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 Suid.OpenToolbox.DataAccessLayer as a Cake Addin
#addin nuget:?package=Suid.OpenToolbox.DataAccessLayer&version=6.0.1.5

// Install Suid.OpenToolbox.DataAccessLayer as a Cake Tool
#tool nuget:?package=Suid.OpenToolbox.DataAccessLayer&version=6.0.1.5

Welcome to Open Toolbox Data Access Layer's documentation

Open Toolbox Data Access Layer is a .Net standard library that make easier and more readeable the use of entity framework. Library provides commands to read, create, update or delete entries in databases. Open Toolbox Data Access Layer is write in .Net 6.X.

Documentation

What Data Access Layer is made for

The Data Access Layer Project allow you to access to database in a lightweight code. This librarr also provide Entity Framework code first type configuration for Data layer open toolbox's objects.

Create an entity

``

## Read an entity
````csharp
``

## Update an entity
````csharp
``

## Delete an entity
````csharp
``

## Use a type configuration
````csharp
using Suid.OpenToolbox.DataAccessLayer.TypeConfigurations.Generics;

/// <inheritdoc />
public class MyTypeConfiguration : EntityTypeConfiguration<MyEntity>
{
	/// <summary>
	/// Configures my entity.
	/// </summary>
	/// <param name="builder">Entity builder.</param>
	public new void Configure(EntityTypeBuilder<MyEntity> builder)
	{
		base.Configure(builder);
		
		// YOUR CODE
	}
}
``
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 (1)

Showing the top 1 NuGet packages that depend on Suid.OpenToolbox.DataAccessLayer:

Package Downloads
Suid.OpenToolbox

OpenToolbox is a collection of useful .Net Standard libraries that make developpers life easier and help them to respect good practices in development. These librairies are design to respect the following arts of thinking: - OpenSource Philosophy - Keep code clear by write less - Industrial Development optimisation

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.1.5 382 8/30/2022
6.0.1.4 585 8/8/2022
6.0.0.1 393 2/21/2022