SmartSql.DIExtension 3.7.15-rc2

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

// Install SmartSql.DIExtension as a Cake Tool
#tool nuget:?package=SmartSql.DIExtension&version=3.7.15-rc2&prerelease                

简介

SmartSql-Starter

Why

  • 拥抱 跨平台 DotNet Core,是时候了。
  • 高性能、高生产力,超轻量级的ORM。107kb

So SmartSql

  • TargetFrameworks: .NETFramework 4.6 & .NETStandard 2.0
  • SmartSql = MyBatis + Cache(Memory | Redis) + ZooKeeper + R/W Splitting + ......

主要特性

  • 1 ORM
    • 1.1 Sync
    • 1.2 Async
  • 2 XmlConfig & XmlStatement → Sql
    • 2.1 SmartSqlMapConfig & SmartSqlMap (是的,你猜对了,和MyBatis一样,通过XML配置分离SQL。)
    • 2.2 Config Hot Update →ConfigWatcher & Reload (配置文件热更新:当你需要修改Sql的时候,直接修改SqlMap配置文件,保存即可。)
  • 3 读写分离
    • 3.1 读写分离
    • 3.2 多读库 权重筛选 (配置多读库,根据读库权重选举读库)
  • 4 日志
    • 4.1 基于 Microsoft.Extensions.Logging.Abstractions (当你需要跟踪调试的时候一切都是那么一目了然)
  • 5 Dynamic Repository
    • 5.1 SmartSql.DyRepository (解放你的双手,你来定义仓储接口,我来实现数据库访问)
  • 6 查询缓存 (热数据缓存,一个配置轻松搞定)
    • 6.1 SmartSql.Cache.Memory
      • 6.1.1 Fifo
      • 6.1.2 Lru
    • 6.2 SmartSql.Cache.Redis
    • 6.3 缓存事务一致性
  • 7 分布式配置插件
    • 7.1 IConfigLoader (配置文件加载器)
    • 7.2 LocalFileConfigLoader (本地文件配置加载器)
      • 7.2.1 Load SmartSqlMapSource Xml
      • 7.3.1 Load SmartSqlMapSource Directory
    • 7.3 SmartSql.ZooKeeperConfig (ZooKeeper 分布式配置文件加载器)

安装 (NuGet)

Install-Package SmartSql

最佳实践

安装 SmartSql.DIExtension

Install-Package SmartSql.DIExtension

注入依赖

 services.AddSmartSql();
 services.AddRepositoryFactory();
 services.AddRepositoryFromAssembly((options) =>
 {
    options.AssemblyString = "SmartSql.Starter.Repository";
 });

定义仓储接口

    /// <summary>
    /// 属性可选: [SqlMap(Scope = "User")] ,不设置 则默认 Scope 模板:I{Scope}Repository
    /// 可传入自定义模板
    /// RepositoryBuilder builder=new RepositoryBuilder("I{Scope}DAL");
    /// </summary>
    public interface IUserRepository
    {
        /// <summary>
        /// 属性可选 [Statement(Execute = ExecuteBehavior.Auto,Id = "Query")]
        /// 默认 Execute:Auto ,自动判断 执行类型
        /// 默认 Id : 方法名
        /// </summary>
        /// <param name="reqParams"></param>
        /// <returns></returns>
        IEnumerable<User> Query(object reqParams);
        long GetRecord(object reqParams);
        User Get(object reqParams);
        long Insert(User entity);
        int Update(User entity);
        int Delete(User enttiy);
    }

尽情享用

    public class UserService
    {
        private readonly ISmartSqlMapper _smartSqlMapper;
        private readonly IUserRepository _userRepository;

        public UserService(
             ISmartSqlMapper smartSqlMapper
            , IUserRepository userRepository)
        {
            _smartSqlMapper = smartSqlMapper;
            _userRepository = userRepository;
        }

        public long Add(AddRequest request)
        {
            int existsNum = _userRepository.Exists(new { request.UserName });
            if (existsNum > 0)
            {
                throw new ArgumentException($"{nameof(request.UserName)} has already existed!");
            }
            return _userRepository.Add(new Entitiy.User
            {
                UserName = request.UserName,
                Password = request.Password,
                Status = Entitiy.UserStatus.Ok,
                CreationTime = DateTime.Now,
            });
        }

        public void UseTransaction()
        {
            try
            {
                _smartSqlMapper.BeginTransaction();
                //Biz();
                _smartSqlMapper.CommitTransaction();
            }
            catch (Exception ex)
            {
                _smartSqlMapper.RollbackTransaction();
                throw ex;
            }
        }
    }

文档地址

技术交流

点击链接加入QQ群【SmartSql 官方交流群】:604762592

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. 
.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 (4)

Showing the top 4 NuGet packages that depend on SmartSql.DIExtension:

Package Downloads
SmartSql.AOP

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

SmartSql.InvokeSync

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

SmartSql.CAP

Support CAP extension for SmartSql

Spark.SmartSqlConfig

spark是一个基于netcore的分布式微服务框架。spark有星火的意思,意义为星星之火可以燎原。 项目地址: https://github.com/my6521/Spark

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on SmartSql.DIExtension:

Repository Stars
SkyAPM/SkyAPM-dotnet
The .NET/.NET Core instrument agent for Apache SkyWalking
lindexi/lindexi_gd
博客用到的代码
Version Downloads Last updated
4.1.67 8,022 10/19/2023
4.1.66 1,084 9/21/2023
4.1.65 386 9/21/2023
4.1.64 20,347 5/13/2022
4.1.63 2,191 5/4/2022
4.1.62 2,129 4/29/2022
4.1.59 2,753 3/10/2022
4.1.58 2,262 3/3/2022
4.1.57 9,250 11/17/2020
4.1.56 5,509 7/14/2020
4.1.55 2,714 6/18/2020
4.1.54 1,734 6/12/2020
4.1.53 2,716 4/8/2020
4.1.52 1,799 3/27/2020
4.1.51 1,896 3/21/2020
4.1.50 1,648 3/9/2020
4.1.48 1,677 3/5/2020
4.1.46 1,871 12/18/2019
4.1.45 1,694 12/18/2019
4.1.44 2,484 12/5/2019
4.1.43 1,730 11/20/2019
4.1.42 1,999 11/18/2019
4.1.40 1,636 11/12/2019
4.1.39 1,685 11/6/2019
4.1.38 1,798 10/29/2019
4.1.37 1,651 10/29/2019
4.1.36 1,715 10/29/2019
4.1.35 1,711 10/29/2019
4.1.34 1,644 10/28/2019
4.1.33 1,662 10/28/2019
4.1.32 6,595 9/30/2019
4.1.31 1,698 9/29/2019
4.1.30 1,652 9/27/2019
4.1.29 1,667 9/26/2019
4.1.28 1,777 9/2/2019
4.1.27 1,651 8/30/2019
4.1.26 1,698 8/30/2019
4.1.25 1,681 8/30/2019
4.1.24 1,731 8/28/2019
4.1.23 2,946 8/20/2019
4.1.22 1,625 8/19/2019
4.1.21 1,764 8/13/2019
4.1.20 1,695 8/13/2019
4.1.19 1,729 8/13/2019
4.1.18 1,840 8/5/2019
4.1.17 1,882 8/1/2019
4.1.16 1,782 8/1/2019
4.1.15 1,761 7/30/2019
4.1.14 1,698 7/30/2019
4.1.12 1,693 7/30/2019
4.1.11 1,815 7/30/2019
4.1.9 1,677 7/29/2019
4.1.8 1,726 7/29/2019
4.1.7 1,714 7/29/2019
4.1.6 1,790 7/29/2019
4.1.5 1,678 7/27/2019
4.1.3 1,698 7/26/2019
4.1.2 1,692 7/25/2019
4.1.1 1,661 7/25/2019
4.1.0 1,688 7/24/2019
4.0.88 1,682 7/24/2019
4.0.86 1,639 7/22/2019
4.0.85 1,694 7/22/2019
4.0.84 1,713 7/22/2019
4.0.81 1,805 7/19/2019
4.0.80 1,766 7/19/2019
4.0.78 1,694 7/19/2019
4.0.76 1,816 7/17/2019
4.0.75 1,833 7/10/2019
4.0.73 1,791 7/10/2019
4.0.72 1,860 7/5/2019
4.0.71 1,755 6/25/2019
4.0.70 1,576 6/25/2019
4.0.69 1,633 6/25/2019
4.0.68 1,634 6/20/2019
4.0.66 1,611 6/18/2019
4.0.65 1,737 6/17/2019
4.0.63 2,848 6/12/2019
4.0.62 1,629 6/12/2019
4.0.60 1,689 6/11/2019
4.0.59 1,622 6/11/2019
4.0.58 1,756 6/3/2019
4.0.56 1,673 5/31/2019
4.0.55 1,581 5/30/2019
4.0.53 1,668 5/30/2019
4.0.52 1,630 5/30/2019
4.0.51 1,629 5/30/2019
4.0.50 1,640 5/29/2019
4.0.49 1,696 5/29/2019
4.0.48 1,681 5/24/2019
4.0.46 1,418 5/15/2019
4.0.45 1,351 5/10/2019
4.0.44 1,145 5/7/2019
4.0.43 1,112 5/7/2019
4.0.42 1,359 4/28/2019
4.0.41 1,139 4/28/2019
4.0.40 1,151 4/26/2019
4.0.38 1,179 4/26/2019
4.0.36 1,154 4/25/2019
4.0.35 1,184 4/25/2019
4.0.34 1,222 4/23/2019
4.0.33 1,179 4/19/2019
4.0.32 831 4/19/2019
4.0.30 821 4/19/2019
4.0.29 815 4/18/2019
4.0.28 834 4/18/2019
4.0.26 777 4/18/2019
4.0.25 844 4/17/2019
4.0.21 811 4/17/2019
4.0.20 876 4/16/2019
4.0.19 852 4/15/2019
4.0.18 815 4/15/2019
4.0.16 845 4/11/2019
4.0.15 783 4/11/2019
4.0.14 848 4/9/2019
4.0.13 639 4/9/2019
4.0.12 675 4/4/2019
4.0.11 631 4/4/2019
4.0.10 680 4/3/2019
4.0.8 640 4/3/2019
4.0.7 624 4/3/2019
4.0.6 623 4/3/2019
4.0.5 645 4/2/2019
4.0.4 642 4/2/2019
4.0.3 851 4/2/2019
4.0.2 659 4/1/2019
4.0.0 672 4/1/2019
4.0.0-rc999 484 3/31/2019
4.0.0-rc998 475 3/29/2019
4.0.0-rc997 439 3/29/2019
4.0.0-rc996 425 3/29/2019
4.0.0-rc995 450 3/28/2019
4.0.0-rc994 446 3/28/2019
4.0.0-rc993 471 3/28/2019
4.0.0-rc991 471 3/27/2019
4.0.0-rc990 438 3/27/2019
4.0.0-rc99 472 3/27/2019
4.0.0-rc98 451 3/26/2019
4.0.0-rc97 450 3/26/2019
4.0.0-rc96 443 3/26/2019
4.0.0-rc95 469 3/25/2019
4.0.0-rc93 453 3/25/2019
4.0.0-rc92 448 3/25/2019
4.0.0-rc91 446 3/22/2019
4.0.0-rc9 443 3/22/2019
4.0.0-rc8 472 3/21/2019
4.0.0-rc6 457 3/21/2019
4.0.0-rc5 438 3/20/2019
4.0.0-rc3 443 3/19/2019
4.0.0-rc10 456 3/22/2019
4.0.0-rc1 486 3/17/2019
4.0.0-beta5 440 3/16/2019
4.0.0-beta4 442 3/11/2019
4.0.0-beta3 449 3/9/2019
4.0.0-beta2 452 3/8/2019
4.0.0-beta1 446 3/7/2019
3.7.16 4,176 10/26/2018
3.7.15 833 10/24/2018
3.7.15-rc2 565 10/23/2018
3.7.13 796 10/22/2018
3.7.11 794 10/21/2018
3.7.10 1,020 10/19/2018
3.7.8 876 10/1/2018
3.7.6 848 9/26/2018
3.6.7 1,440 9/7/2018
3.6.6.1 870 9/4/2018
3.6.6 1,043 9/4/2018
3.6.5 1,071 9/3/2018
3.6.2 867 8/23/2018
3.6.1 1,075 8/10/2018
3.6.0 888 8/8/2018
3.5.8 893 7/31/2018
3.5.5 867 7/26/2018
3.5.2 864 7/26/2018
3.5.1 878 7/25/2018
3.5.0 870 7/24/2018
3.5.0-pre2 688 7/23/2018
3.4.9 847 7/21/2018
3.4.6 882 7/19/2018
3.3.18 968 7/17/2018
3.3.10 989 7/6/2018
3.3.9 1,006 7/4/2018
3.3.6 1,240 6/26/2018
3.3.5 939 6/26/2018
3.3.4 955 6/26/2018
3.3.3 1,085 6/25/2018
3.3.2 1,079 6/21/2018
3.3.0 1,002 6/13/2018
3.2.0 1,071 6/11/2018
3.1.0 978 6/9/2018
3.0.2 1,061 6/7/2018
3.0.0 1,044 6/2/2018
3.0.0-rc92 831 5/31/2018
3.0.0-rc91 878 5/30/2018
3.0.0-rc6 854 5/28/2018
3.0.0-pre8 941 5/15/2018
3.0.0-pre5 928 5/15/2018

1. adapt SmartSql V3.7.15-rc2