AppSession2.cs
586 Bytes
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Bll
{
public class AppSession2
{
static AppSession2()
{
//默认是支持sqlserver,这里更改为mysql
Dapper.SimpleCRUD.SetDialect(Dapper.SimpleCRUD.Dialect.MySQL);
}
public static string ConnectionString { get; set; } = ConfigurationManager.AppSettings["MySql"];
public static IBll Bll { get; set; } = new DefaultBll(ConnectionString);
}
}