SqlSugarClientHelper
Posted hi-latolo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SqlSugarClientHelper相关的知识,希望对你有一定的参考价值。
using SqlSugar; using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Web; namespace Web.Code.DAL { public static class SqlSugarClientHelper { public static string ConnectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString; public static SqlSugarClient SqlDBConnection { get => new SqlSugarClient(new ConnectionConfig() { ConnectionString = ConnectionString,//必填, 数据库连接字符串 DbType = SqlSugar.DbType.SqlServer, //必填, 数据库类型 IsAutoCloseConnection = true, //默认false, 不自动关闭数据库连接。设置为true无需使用using或者Close操作,自动释放。 InitKeyType = InitKeyType.SystemTable //默认SystemTable, 字段信息读取, 如:该属性是不是主键,是不是标识列等等信息 }); } } }
以上是关于SqlSugarClientHelper的主要内容,如果未能解决你的问题,请参考以下文章