Browse Source

-

pull/12/MERGE
sunkaixuan 8 years ago
parent
commit
c8193c9ef6
  1. 4
      SqlSugar/Interface/IDbBind.cs

4
SqlSugar/Interface/IDbBind.cs

@ -7,6 +7,7 @@ namespace SqlSugar
{
public partial interface IDbBind
{
SqlSugarClient Context { get; set; }
List<string> GuidThrow { get; }
List<string> IntThrow { get; }
List<string> StringThrow { get; }
@ -14,8 +15,7 @@ namespace SqlSugar
List<string> DoubleThrow { get; }
List<string> DateThrow { get; }
List<string> ShortThrow { get; }
SqlSugarClient Context { get; set; }
List<T> DataReaderToList<T>(Type type, IDataReader reader, string fields);
string ChangeDBTypeToCSharpType(string typeName);
List<T> DataReaderToList<T>(Type type, IDataReader reader, string fields);
}
}

Loading…
Cancel
Save