mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-15 23:42:51 +08:00
36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Diagnostics;
|
||
using System.Text;
|
||
|
||
public class g
|
||
{
|
||
static Lazy<IFreeSql> sqliteLazy = new Lazy<IFreeSql>(() => new FreeSql.FreeSqlBuilder()
|
||
.UseConnectionString(FreeSql.DataType.Sqlite, @"Data Source=|DataDirectory|/document22.db;Attachs=xxxtb.db;Pooling=true;Max Pool Size=10")
|
||
.UseAutoSyncStructure(true)
|
||
.UseLazyLoading(true)
|
||
.UseMonitorCommand(
|
||
cmd =>
|
||
{
|
||
Trace.WriteLine(cmd.CommandText);
|
||
}, //监听SQL命令对象,在执行前
|
||
(cmd, traceLog) =>
|
||
{
|
||
Console.WriteLine(traceLog);
|
||
}) //监听SQL命令对象,在执行后
|
||
.UseNoneCommandParameter(true)
|
||
.Build());
|
||
public static IFreeSql sqlite => sqliteLazy.Value;
|
||
|
||
public static IFreeSql CreateMemory()
|
||
{
|
||
return new FreeSql.FreeSqlBuilder()
|
||
.UseConnectionString(FreeSql.DataType.Sqlite, @"Data Source=:memory:")
|
||
.UseAutoSyncStructure(true)
|
||
.UseNoneCommandParameter(true)
|
||
.UseMonitorCommand(cmd => Trace.WriteLine(cmd.CommandText))
|
||
.Build();
|
||
}
|
||
|
||
}
|