SqlSugar/SqlSugar/Interface/IConnectionConfig.cs
sunkaixuan f9133c0fe6 -
2017-05-25 09:43:21 +08:00

16 lines
296 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SqlSugar
{
public interface IConnectionConfig
{
string DbType { get; set; }
string ConnectionString { get; set; }
bool IsAutoCloseConnection { get; set; }
}
}