You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
713 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Configuration;
using System.Diagnostics;
namespace Txgy.EWS.Client.Common
{
public class FreeSqlTencent
{
static Lazy<IFreeSql> mySQLLazy = new Lazy<IFreeSql>(() => new FreeSql.FreeSqlBuilder()
.UseMonitorCommand(cmd => Trace.WriteLine($"Sql{cmd.CommandText}"))//监听SQL语句,Trace在输出选项卡中查看
.UseConnectionString(FreeSql.DataType.MySql, ConfigurationManager.ConnectionStrings["TencetnMySQL"].ConnectionString)
.Build()); //自动同步实体结构到数据库FreeSql不会扫描程序集只有CRUD时才会生成表。
public static IFreeSql tencentRemoteMySQL => mySQLLazy.Value;
}
}