using System; using System.Collections.Generic; using System.Data; namespace SqlSugar { public partial interface IDbBind { SqlSugarClient Context { get; set; } List GuidThrow { get; } List IntThrow { get; } List StringThrow { get; } List DecimalThrow { get; } List DoubleThrow { get; } List DateThrow { get; } List ShortThrow { get; } string GetPropertyTypeName(string dbTypeName); string GetConvertString(string dbTypeName); string GetDbTypeName(string csharpTypeName); string GetCsharpTypeName(string dbTypeName); List> MappingTypes { get; } List DataReaderToList(Type type, IDataReader reader); } }