old_flsystem/类库/SqlSugar/Entities/SugarDebugger.cs

19 lines
478 B
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SqlSugar
{
/// <summary>
/// Used for debugging errors or BUG,Used for debugging, which has an impact on Performance
/// </summary>
public class SugarDebugger
{
/// <summary>
/// If you use the same Db object across threads, you will be prompted
/// </summary>
public bool EnableThreadSecurityValidation { get; set; }
}
}