HJMinimally.Repository.FreeSql 1.1.0

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

// Install HJMinimally.Repository.FreeSql as a Cake Tool
#tool nuget:?package=HJMinimally.Repository.FreeSql&version=1.1.0

Package Description

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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 153 6/29/2023
1.0.13.3 451 6/29/2022
1.0.13.2 425 6/29/2022
1.0.13.1 306 1/10/2022
1.0.13 265 1/10/2022
1.0.12 331 8/6/2021
1.0.11 332 8/5/2021
1.0.10 389 7/29/2021
1.0.9 369 7/26/2021
1.0.8 353 7/23/2021
1.0.7 382 7/13/2021
1.0.6 365 3/11/2021
1.0.5 343 2/5/2021
1.0.4 387 12/21/2020
1.0.3 517 12/15/2020
1.0.2 394 11/25/2020
1.0.1 425 11/20/2020
1.0.0 431 11/19/2020

"DbConfig": [
   {
     "Name": "db1",
     "Default": true, //默认数据库
     "MasterConnetion": "Server=127.0.0.1;database=test;User Id=postgres;password=123456;",
     "DbType": "PostgreSQL", //数据库类型: MySql, SqlServer, PostgreSQL, Oracle , Sqlite , OdbcOracle , OdbcSqlServer , OdbcMySql , OdbcPostgreSQL
     "IsEncrypt": false, //连库字符串是否加密,可以不填,默认true
     "MonitorCommand": true, //监听所有操作,可以不填,默认true
     "Curd": true, //监听crud操作,输出sql,执行耗时,可以不填,默认true
     "SlaveConnections": [ //从库,读写分离使用,可以不填支持一个【主库】多个【从库】,【从库】的查询策略为随机方式。
       // "若某【从库】发生故障,将切换到其他可用【从库】,若已全部不可用则使用【主库】查询。",
       // "出现故障【从库】被隔离起来间隔性的检查可用状态,以待恢复。",
       {
         "ConnectionString": "Server=127.0.0.1;database=test;User Id=postgres;password=123456;"
       },
       {
         "ConnectionString": "Server=127.0.0.1;database=test;User Id=postgres;password=123456;"
       }
     ]
   }
]