20 lines
506 B
C#
20 lines
506 B
C#
using FreeSql;
|
|
|
|
namespace SweetChatService.Config
|
|
{
|
|
public class FreeSqlSetup
|
|
{
|
|
public static IFreeSql CreateFreeSql(string connectionString)
|
|
{
|
|
return new FreeSqlBuilder()
|
|
.UseConnectionString(DataType.MySql, connectionString)
|
|
.UseAutoSyncStructure(false)
|
|
.UseMonitorCommand(cmd =>
|
|
{
|
|
Console.WriteLine(cmd.CommandText);
|
|
})
|
|
.Build();
|
|
}
|
|
}
|
|
}
|