首页 > 代码库 > 通用权限管理系统基类中数据库的连接
通用权限管理系统基类中数据库的连接
public class BaseController : Controller { /// <summary> /// 用户中心Dbhelper /// </summary> public IDbHelper DbHelperUserCenter = GetDbConnection(BaseSystemInfo.UserCenterDbType, BaseSystemInfo.UserCenterDbConnection, ConfigHelper.GetConfigBool("BusinessDbEncrypt")); /// <summary> /// 业务库Dbhelper /// </summary> public IDbHelper DbHelperBusiness = GetDbConnection(BaseSystemInfo.BusinessDbType, BaseSystemInfo.BusinessDbConnection, ConfigHelper.GetConfigBool("UserCenterDbEncrypt")); /// <summary> /// 获得DbHelper /// </summary> /// <param name="currentDbType">数据库类别</param> /// <param name="dbConnection">连接字符串</param> /// <param name="dbEncrypt">是否加密</param> /// <returns>IDbHelper</returns> private static IDbHelper GetDbConnection(CurrentDbType currentDbType, string dbConnection, bool dbEncrypt = false) { if (dbEncrypt) { dbConnection= SecretUtil.Decrypt(dbConnection); } return DbHelperFactory.GetHelper(currentDbType, dbConnection); }..........}
这里是mvc中基类的写法,其中提供了数据库使用加密方式后的解密方法。
通用权限管理系统基类中数据库的连接
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。