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
<PackageReference Include="Suid.OpenToolbox.DataAccessLayer" Version="6.0.1.5" />
paket add Suid.OpenToolbox.DataAccessLayer --version 6.0.1.5
#r "nuget: Suid.OpenToolbox.DataAccessLayer, 6.0.1.5"
// 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 | Versions 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. |
-
net6.0
- Microsoft.EntityFrameworkCore (>= 6.0.8)
- Suid.OpenToolbox.Data.Abstractions (>= 6.0.1.4)
- Suid.OpenToolbox.DataAccessLayer.Abstractions (>= 6.0.1.4)
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.