1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| namespace Yw.Service
| {
| /// <summary>
| /// DAL辅助类
| /// </summary>
| internal class DALCreateHelper
| {
| /// <summary>
| /// 创建DAL
| /// </summary>
| /// <typeparam name="T"></typeparam>
| /// <returns></returns>
| public static T CreateDAL<T>()
| {
| var dbType = Settings.Division.DivisionParasHelper.Division.DataBase.DbType;
| var enableCache = Settings.Division.DivisionParasHelper.Division.DataBase.Factory.EnableCache;
| var cacheTime = Settings.Division.DivisionParasHelper.Division.DataBase.Factory.CacheTime;
| return Yw.DALFactory.CreateDAL3<T>(dbType, enableCache, cacheTime);
| }
| }
| }
|
|