SugarDebugger.cs 478 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace SqlSugar
  6. {
  7. /// <summary>
  8. /// Used for debugging errors or BUG,Used for debugging, which has an impact on Performance
  9. /// </summary>
  10. public class SugarDebugger
  11. {
  12. /// <summary>
  13. /// If you use the same Db object across threads, you will be prompted
  14. /// </summary>
  15. public bool EnableThreadSecurityValidation { get; set; }
  16. }
  17. }