SqlSugar/Src/Asp.NetCore2/SqlSugar.XuguCore/Xugu/XuguEntry.cs

34 lines
1.4 KiB
C#
Raw Normal View History

2024-06-27 11:20:20 +08:00
namespace SqlSugar.Xugu
{
2024-06-27 11:36:06 +08:00
///// <summary>
///// 入口点
///// </summary>
//public static class XuguEntry
//{
// /// <summary>
// /// 使用虚谷数据库,并进行配置。
// /// <code>
// /// 引用包 SqlSugar.XuguCore
// /// using SqlSugar.Xugu;
// ///
// /// protected static SqlSugarScope db = new SqlSugarScope(new ConnectionConfig()
// /// {
// /// ConnectionString = "IP=127.0.0.1;DB=SYSTEM;User=SYSDBA;PWD=SYSDBA;Port=5138;AUTO_COMMIT=on;CHAR_SET=GBK",
// /// DbType = DbType.Custom.UseXugu(),
// /// IsAutoCloseConnection = true,
// /// });
// /// 不需要对 InstanceFactory.CustomDbName 等进行配置,已经配置好了
// /// 仅实现了简单的增删改查,未实现函数,未实现返回插入主键等高级用法
// /// </code>
// /// </summary>
// /// <param name="type">任意数据库类型建议Custom</param>
// /// <returns>DbType.Custom</returns>
// public static DbType UseXugu(this DbType type)
// {
// InstanceFactory.CustomDbName = "Xugu";//文件名前缀
// InstanceFactory.CustomDllName = "SqlSugar.XuguCore";//扩展的dll名字
// InstanceFactory.CustomNamespace = "SqlSugar.Xugu";//扩展dll的命名空间
// return DbType.Custom;
// }
//}
2024-06-27 11:20:20 +08:00
}