CoreDBHelper 1.0.1

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

DBHelper

.NET 使用正则表达式,xml解析,封装 Dapper 让SQL从代码迁移到xml文件上,并实现简单的逻辑处理

使用方法

1.配置连接字符串

.NET CORE 引用 CoreDBHelper.dll 在appsettings.json中增加 "ConnectionStrings": { "test_mysql": "server=127.0.0.1;userid=root;pwd=123456;port=3306;database=backstage;sslmode=none;" } 然后在Startup.cs的ConfigureServices中通过代码附加连接字符串 SQLHelperFactory.Instance.ConnectionStringsDic["test_mysql"] = Configuration.GetConnectionString("test_mysql");

2.配置SQL语句 在项目上增加文件夹SqlConfig,增加DemoSql.xml文件

xml内容如下: <?xml version="1.0" encoding="utf-8" ?> <HCIP.AjaxDataSetting> <Data name="GetData"> <SqlDefinition type="MySql" ConnStringName="test_mysql"> <SqlCommand> <![CDATA[ SELECT * FROM sys_logWHERE Table_Name=@@TableName@@ <%= AND Primary_Key=@@PrimaryKey@@ %><R%= AND Log_Type IN (@@LogType@@)%R>; ]]> </SqlCommand> </SqlDefinition> </Data> </HCIP.AjaxDataSetting>

其中 <HCIP.AjaxDataSetting> 可以是任何名称 代表根节点 <Data name="GetData"> 这里的GetData是使用的时候的KEY type="MySql" 指使用的数据库是 mysql 可以通过这个配置不同的数据库服务器 暂时支持mysql和sqlserver ConnStringName="test_mysql" 指使用的连接字符串是 test_mysql 通过这个可以配置不同的数据源 @@TableName@@ 表示 解析sql时会找Dictionary 里面key为TableName的值按照参数化的方式赋值到sql <%= AND Primary_Key=@@PrimaryKey@@ %> 表示 解析sql时会找Dictionary 里面key为PrimaryKey的值,如果不存在则整段sql会被清空,如果存在则按照参数化的方式赋值到sql <R%= Log_Type IN (@@LogType@@)%R> 表示 解析sql时会找Dictionary 里面key为LogType的值,如果不存在则整段sql会被清空,如果存在则将值直接替换对应@@LogType@@

3.代码使用 static void Main(string[] args) { Dictionary<string, object> dic = new Dictionary<string, object>(); dic["TableName"] = "table1"; var list = SQLHelperFactory.Instance.QueryForList("GetData", dic); Console.Read(); } 生成的sql:SELECT * FROM sys_logWHERE Table_Name=?TableName;

static void Main(string[] args) { Dictionary<string, object> dic = new Dictionary<string, object>(); dic["TableName"] = "table1"; dic["PrimaryKey"] = "primarykey1"; var list = SQLHelperFactory.Instance.QueryForList("GetData", dic); Console.Read(); } 生成的sql:SELECT * FROM sys_logWHERE Table_Name=?TableName AND Primary_Key=?PrimaryKey;

static void Main(string[] args) { Dictionary<string, object> dic = new Dictionary<string, object>(); dic["TableName"] = "table1"; dic["PrimaryKey"] = "primarykey1"; dic["LogType"] = "1,2,3,4"; var list = SQLHelperFactory.Instance.QueryForList("GetData", dic); Console.Read(); } 生成的sql:SELECT * FROM sys_logWHERE Table_Name=?TableName AND Primary_Key=?PrimaryKey AND Log_Type IN (1,2,3,4);

4.接口说明

// 返回影响行数 public int ExecuteNonQuery(string sqlKey, Dictionary<string, object> paramDic, bool isUseTrans = false, int maxretry = MaxRetry);

// 返回一条数据 public IDataReader ExecuteReader(string sqlKey, Dictionary<string, object> paramDic, bool isUseTrans = false, int maxretry = MaxRetry)

// 返回第一行第一列 public object ExecuteScalar(string sqlKey, Dictionary<string, object> paramDic, bool isUseTrans = false, int maxretry = MaxRetry)

// 返回第一行第一列 public T ExecuteScalarByT<T>(string sqlKey, Dictionary<string, object> paramDic, bool isUseTrans = false, int maxretry = MaxRetry)

// 返回IEnumerable public List<dynamic> QueryForList(string sqlKey, Dictionary<string, object> paramDic, bool isUseTrans = false, int maxretry = MaxRetry)

// 返回IEnumerable<T> public List<T> QueryForListByT<T>(string sqlKey, Dictionary<string, object> paramDic, bool isUseTrans = false, int maxretry = MaxRetry)

// 通过sql配置控制返回的类型,调用 QueryForListByT public List<object> QueryForLisByAssembly(string sqlKey, Dictionary<string, object> paramDic, bool isUseTrans = false, int maxretry = MaxRetry)

// 返回dynamic public dynamic QueryForObject(string sqlKey, Dictionary<string, object> paramDic, bool isUseTrans = false, int maxretry = MaxRetry)

// 返回T public T QueryForObjectByT<T>(string sqlKey, Dictionary<string, object> paramDic, bool isUseTrans = false, int maxretry = MaxRetry)

// 返回结果集和数量 专为分页功能而准备 数据集的sql在前面,返回数量的在后面 public IEnumerable<T> QueryMultipleByPage<T>(string sqlKey, Dictionary<string, object> paramDic, out int total, bool isUseTrans = false, int maxretry = MaxRetry)

// 返回多个结果集 public IEnumerable<TReturn> QueryMultiple<TFirst, TSecond, TReturn>(string sqlKey, Dictionary<string, object> paramDic, Func<IEnumerable<TFirst>, IEnumerable<TSecond>, IEnumerable<TReturn>> func, bool isUseTrans = false, int maxretry = MaxRetry)

具体参考 CoreDBDemo

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 netcoreapp2.0 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 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.0.8 160 2/28/2024
1.0.7 452 6/10/2021
1.0.6 652 1/10/2020
1.0.5 593 1/9/2020
1.0.4 683 5/23/2019
1.0.3 694 5/22/2019
1.0.2 785 1/9/2019
1.0.1 1,225 6/11/2018
1.0.0 1,231 6/11/2018