Standard.EntityLayer 6.0.5851

dotnet add package Standard.EntityLayer --version 6.0.5851
                    
NuGet\Install-Package Standard.EntityLayer -Version 6.0.5851
                    
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="Standard.EntityLayer" Version="6.0.5851" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Standard.EntityLayer" Version="6.0.5851" />
                    
Directory.Packages.props
<PackageReference Include="Standard.EntityLayer" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Standard.EntityLayer --version 6.0.5851
                    
#r "nuget: Standard.EntityLayer, 6.0.5851"
                    
#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.
#:package Standard.EntityLayer@6.0.5851
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Standard.EntityLayer&version=6.0.5851
                    
Install as a Cake Addin
#tool nuget:?package=Standard.EntityLayer&version=6.0.5851
                    
Install as a Cake Tool

basic ORM Framework & Designer

basic ORM 于2012 年发布、2023 年正式开源,该组件已在数百个成熟项目中应用。

经过数十个版本的更新迭代发布全新v6.0版本,支持动态条件查询(Lambda)

数据库持久化 ORM 开发框架,支持多种数据库(MSSQL,MYSQL,ORACLE,DB2,PostgreSQL等)。

支持Linq表达式动态查询数据。支持快速分页

简单的事务处理,自动化事务提交,回滚

设计器文件目录

  • 设计器文件(*.dpdl)
    • 数据持久类代码(xxxAccess.cs)
    • 数据持久类代码(xxxAccess.designer.cs)
    • 业务逻辑类代码(xxxContext.cs)
    • 业务逻辑类代码(xxxContext.designer.cs)

添加持久类截图

NuGet packages

包名称 包说明 状态
Standard.EntityLayer 实体模型包 NuGet version
Standard.DataAccess 基础数据库持久包 NuGet version
Standard.SqlClientAccess SQL Server 数据库持久类支持包 NuGet version
Standard.MySqlAccess MySql 数据库持久类支持包 NuGet version
Standard.OracleAccess Oracle 数据库持久类支持包 NuGet version
Standard.PostgreAccess PostgreSQL 数据库持久类支持包 NuGet version

不使用分布式事务

using(xxxAccess access = new xxxAccess(connectionstring))
{
   access.Create(entity); 

   await access.CreateAsync(entity);

   await access.BatchAsync(entity);

   await access.BulkCopyAsync(DataTable);
}

//使用 Lambda 表达式查询数据
using(xxxAccess access = new xxxAccess(connectionstring))
{
    var queries = access.GetEntities<XXX>(0,0);
    queries.Where(m => m.Enabled == true).Where(m => m.Key >= 1);
    return queries.ToPaginationAsync();
}

使用分布式事务(xxxContext.cs)

using(xxxAccess access = new xxxAccess(connectionstring, true))
{   
    access.Create(entity); or await access.CreateAsync(entity);
    access.SetComplate();
}

using(xxxAccess access = new xxxAccess(connectionstring, TimeSpan.FromSeconds(60)))
{   
    access.Create(entity); or await access.CreateAsync(entity);
    access.SetComplate();
}

使用日志

在 Program 文件中设置应用停止时缓冲区没有写入的日志信息

app.Lifetime.ApplicationStopping.Register(() =>
{
    LoggerWriter.FlushAllAsync();
});
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 (8)

Showing the top 5 NuGet packages that depend on Standard.EntityLayer:

Package Downloads
Basic.MvcLibrary

Asp.Net Mvc Core Supporting

Standard.DataAccess

ORM 框架数据库持久实现,支持多种数据库(MSSQL,MYSQL,ORACLE,DB2,PostgreSQL等),支持Linq表达式动态查询数据

Standard.MvcLibrary

Asp.Net Mvc Core Supporting

Standard.MySqlAccess

ORM 框架数据库持久实现(MySQL)特定数据库实现。

Standard.OracleAccess

ORM 框架数据库持久实现(Oracle)特定数据库实现。

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
6.0.5851 364 9/2/2025
6.0.5848 465 8/25/2025
6.0.5847 350 8/18/2025
6.0.5844 365 8/11/2025
6.0.5836 252 8/2/2025
6.0.5835 246 8/2/2025
6.0.5834 304 8/1/2025
6.0.5833 296 8/1/2025
6.0.5832 574 7/25/2025
6.0.5830 387 7/10/2025
6.0.5829 391 7/8/2025
6.0.5828 382 6/25/2025
6.0.5823 396 6/14/2025
6.0.5814 402 4/30/2025
6.0.5811 413 4/2/2025
6.0.5810 396 4/1/2025
6.0.5809 394 4/1/2025
6.0.5806 374 2/27/2025
6.0.5804 398 12/27/2024
6.0.5803 420 12/2/2024
6.0.5496 404 11/4/2024
6.0.5495 390 10/29/2024
6.0.5493 394 10/17/2024
6.0.5492 378 10/12/2024
6.0.5491 511 8/14/2024
6.0.5490 418 5/14/2024
6.0.5486 438 5/10/2024
6.0.5485 510 4/4/2024
6.0.5483 481 12/4/2023
6.0.5482 550 11/30/2023
6.0.5480 481 11/27/2023
6.0.5479 475 11/24/2023
6.0.5476 551 11/18/2023
6.0.5475 502 11/13/2023
6.0.5473 514 11/4/2023
6.0.5469 483 10/27/2023
6.0.5467 417 10/25/2023
6.0.5457 408 9/20/2023
6.0.5455 501 9/7/2023
6.0.5454 451 8/31/2023
6.0.5453 528 7/7/2023
6.0.5452 592 6/2/2023
6.0.5451 613 5/16/2023
6.0.5450 797 4/3/2023
6.0.5448 909 3/22/2023
6.0.5446 959 3/14/2023
6.0.5445 976 3/14/2023
6.0.5444 944 3/8/2023
6.0.5443 985 2/26/2023
6.0.5441 1,021 2/18/2023
6.0.5440 1,230 1/9/2023
6.0.5438 1,206 1/4/2023
6.0.5435 1,252 1/3/2023
6.0.5433 1,228 12/30/2022
6.0.5429 1,230 12/30/2022
6.0.5422 1,244 12/28/2022
6.0.5421 1,285 12/9/2022
6.0.5416 1,663 10/29/2022
6.0.5413 1,822 10/16/2022
6.0.5409 1,795 10/9/2022
4.7.13672 1,859 8/4/2022
4.7.13668 1,939 6/27/2022
4.7.13664 2,004 5/16/2022
4.7.13652 1,997 3/21/2022
4.7.13651 1,994 3/5/2022
4.7.13649 2,079 2/24/2022
4.7.13646 2,074 2/16/2022
4.7.13642 1,925 1/15/2022
4.7.13638 1,228 12/23/2021
4.7.13628 1,258 11/30/2021
4.7.13624 2,403 11/26/2021
4.7.13622 3,590 11/25/2021
4.7.13611 1,512 10/22/2021
4.7.13610 1,586 10/17/2021
4.7.13605 1,494 10/11/2021