摘要:
public static List ToList( this OracleDataReader reader ) { List list = new List(); Type type = typeof( T ); while( reader.Read() ) { T t = Activator.CreateInstance(); int filedCount = reader.FieldCount; ... 阅读全文
posted @ 2014-02-10 10:00
Shoring
阅读(1079)
评论(0)
推荐(0)