25 lines
844 B
C#
25 lines
844 B
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 DisableNvarchar { get; set; }
|
|||
|
public bool DisableMillisecond { get; set; }
|
|||
|
public bool PgSqlIsAutoToLower = true;
|
|||
|
public bool PgSqlIsAutoToLowerCodeFirst = true;
|
|||
|
public bool IsAutoToUpper = 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; }
|
|||
|
}
|
|||
|
}
|