mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-23 11:12:50 +08:00
14 lines
296 B
C#
14 lines
296 B
C#
using System;
|
|
|
|
namespace FreeSql.Site.DAL
|
|
{
|
|
public class Db
|
|
{
|
|
|
|
public static IFreeSql mysql = new FreeSql.FreeSqlBuilder()
|
|
.UseConnectionString(FreeSql.DataType.MySql, AppSettingsManager.Get("ConnectionStrings:DefaultDbContext"))
|
|
.Build();
|
|
|
|
}
|
|
}
|