mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-30 04:45:54 +08:00
35 lines
1.5 KiB
C#
35 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class ConnMoreSettings
|
|
{
|
|
public bool IsAutoRemoveDataCache { get; set; }
|
|
public bool IsWithNoLockQuery { get; set; }
|
|
public bool IsWithNoLockSubquery { get; set; }
|
|
|
|
public bool DisableNvarchar { get; set; }
|
|
public bool DisableMillisecond { get; set; }
|
|
public bool PgSqlIsAutoToLower { get; set; } = true;
|
|
public bool PgSqlIsAutoToLowerCodeFirst { get; set; } = true;
|
|
public bool IsAutoToUpper { get; set; } = true;
|
|
public int DefaultCacheDurationInSeconds { get; set; }
|
|
public bool? TableEnumIsString { get; set; }
|
|
public DateTime? DbMinDate { get; set; } = Convert.ToDateTime("1900-01-01");
|
|
public bool IsNoReadXmlDescription { get; set; }
|
|
public bool SqlServerCodeFirstNvarchar { get; set; }
|
|
public bool SqliteCodeFirstEnableDefaultValue { get; set; }
|
|
public bool SqliteCodeFirstEnableDescription { get; set; }
|
|
public bool IsAutoUpdateQueryFilter { get; set; }
|
|
public bool IsAutoDeleteQueryFilter { get; set; }
|
|
public bool EnableModelFuncMappingColumn { get; set; }
|
|
public bool EnableOracleIdentity { get; set; }
|
|
public bool EnableCodeFirstUpdatePrecision { get; set; }
|
|
public bool SqliteCodeFirstEnableDropColumn { get; set; }
|
|
public bool IsCorrectErrorSqlParameterName { get; set; }
|
|
}
|
|
}
|