SmartSql 2.2.0-preview

This is a prerelease version of SmartSql.
There is a newer version of this package available.
See the version list below for details.
dotnet add package SmartSql --version 2.2.0-preview
                    
NuGet\Install-Package SmartSql -Version 2.2.0-preview
                    
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="SmartSql" Version="2.2.0-preview" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SmartSql" Version="2.2.0-preview" />
                    
Directory.Packages.props
<PackageReference Include="SmartSql" />
                    
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 SmartSql --version 2.2.0-preview
                    
#r "nuget: SmartSql, 2.2.0-preview"
                    
#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 SmartSql@2.2.0-preview
                    
#: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=SmartSql&version=2.2.0-preview&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=SmartSql&version=2.2.0-preview&prerelease
                    
Install as a Cake Tool

SmartSql - Documentation

0. Why ?

  • Embrace the cross platform. DotNet Core, it's time!
  • Based on Dapper, no more wheels are repeated. Dapper performance you know!

1. So SmartSql

  • TargetFramework: .NETStandard,Version=v1.3
  • SmartSql = Dapper + MyBatis + Cache(Memory | Redis) + ZooKeeper + R/W Splitting + ......

2. Feature

  • 1 ORM
    • 1.1 Sync
    • 1.2 Async
  • 2 XmlConfig & XmlStatement → Sql
    • 2.1 SmartSqlMapConfig & SmartSqlMap √ (Yes, you guessed that, like MyBatis, you separated SQL from the XML configuration.)
    • 2.2 Config Hot Update →ConfigWatcher & Reload (Configuration file hot update: when you need to change Sql, modify the SqlMap configuration file directly and save it.)
  • 3 Read-write separation
    • 3.1 Read-write separation
    • 3.2 Election of the read database by weight
  • 4 Logging √
    • 4.1 Base on Microsoft.Extensions.Logging.Abstractions (When you need to track the debugging when everything is so clear at a glance)
  • 5 DAO
    • 5.1 DAO
    • 5.2 DAO Tool
      • 5.2.1 Template Xml & Entity & DAO
      • 5.2.2 Generate Tool
  • 6 Query Cache
    • 6.1 SmartSql.Cache.Memory
      • 6.1.1 Fifo
      • 6.1.2 Lru
    • 6.2 SmartSql.Cache.Redis
    • 6.3 Cache transaction consistency
  • 7 Distributed configuration plugin
    • 7.1 IConfigLoader
    • 7.2 LocalFileConfigLoader √ (Local file configuration loader)
      • 7.2.1 Load SmartSqlMapSource Xml √
      • 7.3.1 Load SmartSqlMapSource Directory √
    • 7.3 SmartSql.ZooKeeperConfig √ (Distributed configuration file loader by ZooKeeper)

3. Performance

Query Times:1000000

ORM Total(ms)
SmartSql 63568
Dapper 60023
MyBaits 83566

Query Times:100000

ORM Total(ms)
SmartSql 6075
Dapper 5931
MyBaits 6574
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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.  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 netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.3 is compatible.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net46 is compatible.  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 tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 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 (25)

Showing the top 5 NuGet packages that depend on SmartSql:

Package Downloads
SmartSql.DyRepository

SmartSql = MyBatis + Cache(Memory | Redis) + ZooKeeper + R/W Splitting +Dynamic Repository ....

SmartSql.DIExtension

SmartSql = MyBatis + Cache(Memory | Redis) + ZooKeeper + R/W Splitting +Dynamic Repository ....

SmartSql.TypeHandler

SmartSql = MyBatis + Cache(Memory | Redis) + ZooKeeper + R/W Splitting +Dynamic Repository ....

SmartSql.Bulk

SmartSql = MyBatis + Cache(Memory | Redis) + ZooKeeper + R/W Splitting +Dynamic Repository ....

SmartSql.ScriptTag

SmartSql = MyBatis + Cache(Memory | Redis) + ZooKeeper + R/W Splitting +Dynamic Repository ....

GitHub repositories (4)

Showing the top 4 popular GitHub repositories that depend on SmartSql:

Repository Stars
SkyAPM/SkyAPM-dotnet
The .NET/.NET Core instrument agent for Apache SkyWalking
ElderJames/shriek-fx
An easy-to-use rapid development framework developed on the basis of.NET Core 2.0, following the constraints of domain Driven Design (DDD) specifications, combined with the CQRS architecture to provide the infrastructure for event-driven, event backtracking, responsiveness, and more. Let developers enjoy the true meaning of object-oriented design patterns brought by the aesthetic.
dotnetcore/SmartCode
SmartCode = IDataSource -> IBuildTask -> IOutput => Build Everything!!!
lindexi/lindexi_gd
博客用到的代码
Version Downloads Last Updated
4.1.67 13,699 10/19/2023
4.1.66 2,007 9/21/2023
4.1.65 1,242 9/21/2023
4.1.64 29,471 5/13/2022
4.1.63 6,380 5/4/2022
4.1.62 6,285 4/29/2022
4.1.59 7,127 3/10/2022
4.1.58 6,678 3/3/2022
4.1.57 13,275 11/17/2020
4.1.56 8,423 7/14/2020
4.1.55 5,756 6/18/2020
4.1.54 4,804 6/12/2020
4.1.53 5,858 4/8/2020
4.1.52 5,995 3/27/2020
4.1.51 5,033 3/21/2020
4.1.50 7,319 3/9/2020
4.1.48 4,575 3/5/2020
4.1.46 4,828 12/18/2019
4.1.45 4,519 12/18/2019
4.1.44 5,298 12/5/2019
4.1.43 4,636 11/20/2019
4.1.42 4,932 11/18/2019
4.1.40 4,512 11/12/2019
4.1.39 4,676 11/6/2019
4.1.38 4,625 10/29/2019
4.1.37 4,523 10/29/2019
4.1.36 4,565 10/29/2019
4.1.35 4,521 10/29/2019
4.1.34 4,483 10/28/2019
4.1.33 4,523 10/28/2019
4.1.32 13,940 9/30/2019
4.1.31 4,541 9/29/2019
4.1.30 4,542 9/27/2019
4.1.29 4,458 9/26/2019
4.1.28 4,768 9/2/2019
4.1.27 4,474 8/30/2019
4.1.26 4,530 8/30/2019
4.1.25 4,583 8/30/2019
4.1.24 4,647 8/28/2019
4.1.23 9,838 8/20/2019
4.1.22 4,452 8/19/2019
4.1.21 4,674 8/13/2019
4.1.20 4,605 8/13/2019
4.1.19 4,652 8/13/2019
4.1.18 12,443 8/5/2019
4.1.17 4,587 8/1/2019
4.1.16 4,538 8/1/2019
4.1.15 4,531 7/30/2019
4.1.14 4,461 7/30/2019
4.1.12 4,567 7/30/2019
4.1.11 4,633 7/30/2019
4.1.9 4,579 7/29/2019
4.1.8 4,579 7/29/2019
4.1.7 4,498 7/29/2019
4.1.6 4,556 7/29/2019
4.1.5 4,490 7/27/2019
4.1.3 4,531 7/26/2019
4.1.2 4,529 7/25/2019
4.1.1 4,320 7/25/2019
4.1.0 4,484 7/24/2019
4.0.88 4,435 7/24/2019
4.0.86 5,169 7/22/2019
4.0.85 4,462 7/22/2019
4.0.84 4,450 7/22/2019
4.0.81 4,643 7/19/2019
4.0.80 4,415 7/19/2019
4.0.78 4,427 7/19/2019
4.0.76 4,613 7/17/2019
4.0.75 6,832 7/10/2019
4.0.73 4,596 7/10/2019
4.0.72 4,694 7/5/2019
4.0.71 4,748 6/25/2019
4.0.70 4,559 6/25/2019
4.0.69 4,493 6/25/2019
4.0.68 4,516 6/20/2019
4.0.66 4,635 6/18/2019
4.0.65 4,645 6/17/2019
4.0.63 6,395 6/12/2019
4.0.62 4,664 6/12/2019
4.0.60 4,605 6/11/2019
4.0.59 4,457 6/11/2019
4.0.58 4,681 6/3/2019
4.0.56 4,521 5/31/2019
4.0.55 4,418 5/30/2019
4.0.53 4,356 5/30/2019
4.0.52 4,419 5/30/2019
4.0.51 4,300 5/30/2019
4.0.50 4,430 5/29/2019
4.0.49 4,535 5/29/2019
4.0.48 4,433 5/24/2019
4.0.46 5,607 5/15/2019
4.0.45 4,193 5/10/2019
4.0.44 3,991 5/7/2019
4.0.43 3,920 5/7/2019
4.0.42 4,151 4/28/2019
4.0.41 3,872 4/28/2019
4.0.40 3,966 4/26/2019
4.0.38 4,015 4/26/2019
4.0.36 4,054 4/25/2019
4.0.35 4,038 4/25/2019
4.0.34 3,860 4/23/2019
4.0.33 3,981 4/19/2019
4.0.32 3,991 4/19/2019
4.0.30 3,884 4/19/2019
4.0.29 3,694 4/18/2019
4.0.28 3,756 4/18/2019
4.0.26 3,727 4/18/2019
4.0.25 3,784 4/17/2019
4.0.21 3,752 4/17/2019
4.0.20 3,780 4/16/2019
4.0.19 3,834 4/15/2019
4.0.18 3,769 4/15/2019
4.0.16 3,776 4/11/2019
4.0.15 3,727 4/11/2019
4.0.14 3,840 4/9/2019
4.0.13 3,781 4/9/2019
4.0.12 3,859 4/4/2019
4.0.11 3,766 4/4/2019
4.0.10 1,200 4/3/2019
4.0.9 770 4/3/2019
4.0.8 1,162 4/3/2019
4.0.7 1,154 4/3/2019
4.0.6 1,113 4/3/2019
4.0.5 1,178 4/2/2019
4.0.4 1,174 4/2/2019
4.0.3 5,158 4/2/2019
4.0.2 1,152 4/1/2019
4.0.1 988 4/1/2019
4.0.0 4,433 4/1/2019
4.0.0-rc999 792 3/31/2019
4.0.0-rc998 724 3/29/2019
4.0.0-rc997 1,281 3/29/2019
4.0.0-rc996 1,826 3/29/2019
4.0.0-rc995 698 3/28/2019
4.0.0-rc994 693 3/28/2019
4.0.0-rc993 1,646 3/28/2019
4.0.0-rc991 746 3/27/2019
4.0.0-rc990 731 3/27/2019
4.0.0-rc99 750 3/27/2019
4.0.0-rc98 729 3/26/2019
4.0.0-rc97 740 3/26/2019
4.0.0-rc96 1,520 3/26/2019
4.0.0-rc95 1,893 3/25/2019
4.0.0-rc93 1,067 3/25/2019
4.0.0-rc92 1,021 3/25/2019
4.0.0-rc91 1,354 3/22/2019
4.0.0-rc9 1,270 3/22/2019
4.0.0-rc8 823 3/21/2019
4.0.0-rc6 913 3/21/2019
4.0.0-rc5 730 3/20/2019
4.0.0-rc3 862 3/18/2019
4.0.0-rc2 528 3/18/2019
4.0.0-rc10 718 3/22/2019
4.0.0-rc1 2,193 3/17/2019
4.0.0-beta5 1,316 3/16/2019
4.0.0-beta4 756 3/11/2019
4.0.0-beta3 722 3/9/2019
4.0.0-beta2 1,446 3/8/2019
4.0.0-beta1 1,446 3/7/2019
3.8.15 1,418 4/26/2019
3.8.13 781 4/9/2019
3.8.12 2,419 12/17/2018
3.8.9 766 3/26/2019
3.8.8 1,310 12/5/2018
3.8.6 1,433 11/29/2018
3.8.5 909 11/29/2018
3.8.4 2,045 11/9/2018
3.8.2 2,473 10/30/2018
3.8.0 1,573 10/29/2018
3.7.16 3,654 10/26/2018
3.7.15 2,103 10/24/2018
3.7.15-rc4 724 10/24/2018
3.7.15-rc2 779 10/23/2018
3.7.13 1,340 10/22/2018
3.7.12 945 10/22/2018
3.7.11 1,399 10/21/2018
3.7.10 1,431 10/11/2018
3.7.9 1,197 10/10/2018
3.7.8 1,428 9/30/2018
3.7.6 1,189 9/28/2018
3.7.5 1,162 9/26/2018
3.7.3 972 9/26/2018
3.7.2 966 9/25/2018
3.7.1 1,002 9/25/2018
3.7.0 1,418 9/18/2018
3.7.0-pre6 809 9/17/2018
3.6.9 1,001 9/16/2018
3.6.8.2 1,018 9/12/2018
3.6.8.1 1,265 9/9/2018
3.6.7 1,426 9/7/2018
3.6.5 2,322 9/1/2018
3.6.4 1,354 8/28/2018
3.6.2 1,229 8/23/2018
3.6.1 1,473 8/13/2018
3.6.0 1,920 8/8/2018
3.6.0-rc2 996 8/7/2018
3.6.0-rc1 971 8/5/2018
3.6.0-pre9 953 8/5/2018
3.6.0-pre8 1,009 8/5/2018
3.6.0-pre6 1,022 8/4/2018
3.6.0-pre3 896 8/3/2018
3.6.0-pre1 1,238 8/3/2018
3.5.14 1,117 8/2/2018
3.5.13 1,143 8/2/2018
3.5.12 1,125 8/2/2018
3.5.11 1,112 8/2/2018
3.5.10 1,133 8/1/2018
3.5.9 1,070 8/1/2018
3.5.8 1,581 7/31/2018
3.5.5 1,527 7/31/2018
3.5.3 2,290 7/25/2018
3.5.2 1,113 7/25/2018
3.5.1 1,340 7/25/2018
3.5.0 1,497 7/24/2018
3.5.0-pre2 1,069 7/23/2018
3.5.0-pre1 928 7/21/2018
3.4.8 1,846 7/19/2018
3.4.6 1,522 7/19/2018
3.4.3 1,314 7/19/2018
3.4.2 1,299 7/18/2018
3.4.0 1,290 7/18/2018
3.3.18 2,004 7/13/2018
3.3.16 1,145 7/12/2018
3.3.12 1,286 7/12/2018
3.3.11 1,474 7/5/2018
3.3.10 1,279 7/4/2018
3.3.8 1,598 7/1/2018
3.3.6 2,341 6/26/2018
3.3.4 2,282 6/26/2018
3.3.3 1,542 6/25/2018
3.3.1 1,908 6/13/2018
3.2.0 1,977 6/11/2018
3.1.0 1,747 6/9/2018
3.0.1 1,726 6/4/2018
3.0.0 2,805 6/2/2018
3.0.0-rc93 1,145 6/1/2018
3.0.0-rc92 1,295 5/31/2018
3.0.0-rc91 1,138 5/30/2018
3.0.0-rc8 1,094 5/29/2018
3.0.0-rc6 1,578 5/28/2018
3.0.0-rc5 1,177 5/27/2018
3.0.0-rc4 1,081 5/18/2018
3.0.0-rc3 1,086 5/16/2018
3.0.0-pre8 1,739 5/15/2018
3.0.0-pre4 1,217 5/12/2018
3.0.0-pre3 1,190 5/8/2018
3.0.0-pre2 1,141 5/7/2018
3.0.0-pre1 1,146 5/6/2018
2.3.2 2,985 3/25/2018
2.3.0 1,581 3/24/2018
2.2.8 1,699 3/8/2018
2.2.6 1,454 3/6/2018
2.2.2 1,643 2/5/2018
2.2.1 2,074 12/27/2017
2.2.0.2 1,736 12/27/2017
2.2.0.1 3,870 11/8/2017
2.2.0 1,687 11/7/2017
2.2.0-preview 1,215 11/3/2017
2.1.0-preview2 1,048 11/3/2017
2.0.18.8 1,326 10/24/2017
2.0.18.6 1,529 10/13/2017
2.0.18.5 1,305 10/10/2017
2.0.18.2 1,339 10/8/2017
2.0.18 1,806 9/28/2017
2.0.16 1,864 9/19/2017
2.0.15 1,567 9/19/2017
2.0.13 1,539 9/18/2017
2.0.12 1,541 9/18/2017
2.0.8 1,303 9/14/2017
2.0.6 1,310 9/12/2017
2.0.5 1,509 9/1/2017
2.0.4 1,377 8/30/2017
2.0.3 2,097 8/21/2017
2.0.0 1,596 8/16/2017
2.0.0-preview3-final 1,035 8/16/2017
2.0.0-preview2-final 1,263 8/16/2017
1.8.8.2 1,441 8/16/2017
1.8.8.1 1,391 8/15/2017
1.8.6.1 1,560 8/14/2017
1.8.6 1,523 8/11/2017
1.8.5 1,362 8/10/2017
1.8.3 1,372 8/10/2017
1.8.2 1,353 8/10/2017
1.8.0 1,363 8/10/2017
1.7.8 1,360 8/9/2017
1.6.7 1,579 8/8/2017
1.6.6 2,489 7/24/2017
1.6.2 1,793 7/19/2017
1.5.9 1,461 7/11/2017
1.5.8.1 1,732 5/27/2017
1.5.8 1,845 5/25/2017
1.5.5 1,911 5/23/2017
1.5.3 1,915 5/22/2017
1.5.2 1,932 5/22/2017
1.5.0 1,609 5/20/2017
1.4.9 1,899 4/25/2017
1.4.8 2,534 4/25/2017
1.4.4 1,911 4/21/2017
1.4.3 2,201 4/20/2017
1.4.2 2,158 4/20/2017
1.3.1 1,651 4/18/2017
1.2.0 1,890 4/17/2017
1.1.0 1,563 4/13/2017
1.0.4 1,624 4/7/2017
1.0.2 1,959 4/3/2017

0. add [For Tag] to support iterate.
1. add support global parameter prefix (defalut=$).
2. add [Env Tag]  to support different DBProvider.
3. update Schemas to support above features.