2025-06-06 16:00:39 +08:00

57 lines
1.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace VOL.Core.DBManager.Partial
{
/// <summary>
/// 2022.11.21增加其他数据库(sqlserver、mysql、pgsql、oracle)连接配置说明
/// 需要把两个DBServerProvider.cs文件都更新下
/// </summary>
public partial class DBServerProvider
{
///// <summary>
///// 单独配置mysql数据库
///// </summary>
//public static ISqlDapper SqlDapperMySql
//{
// get
// {
// //读取appsettings.json中的配置
// string 数据库连接字符串 = AppSetting.GetSettingString("key");
// return new SqlDapper(数据库连接字符串, DbCurrentType.MySql);
// //访问数据库方式
// //DBServerProvider.SqlDapperMySql.xx
// }
//}
///// <summary>
///// 如果有多个不同的mysql数据库这里再加一个配置
///// </summary>
//public static ISqlDapper SqlDapperMySql2
//{
// get
// {
// //读取appsettings.json中的配置
// string 数据库连接字符串 = AppSetting.GetSettingString("key2");
// return new SqlDapper(数据库连接字符串, DbCurrentType.MySql);
// //访问数据库方式
// //DBServerProvider.SqlDapperMySql2.xx
// }
//}
///// <summary>
///// 单独配置SqlServer数据库
///// </summary>
//public static ISqlDapper SqlDapperSqlServer
//{
// get
// {
// //读取appsettings.json中的配置
// string 数据库连接字符串 = AppSetting.GetSettingString("key");
// return new SqlDapper(数据库连接字符串, DbCurrentType.MsSql);
// //访问数据库方式
// //DBServerProvider.SqlDapperSqlServer.xx
// }
//}
}
}