示例#1
0
 public static DateTime GetDate(this IDataReader dr, string key)
 {
     return(MapperHelpers.ToDate(dr[key]));
 }
示例#2
0
 public static XmlDocument GetXml(this IDataReader dr, string key)
 {
     return(MapperHelpers.ToXml(dr[key]));
 }
示例#3
0
 public static T GetValue <T>(this IDataReader dr, string key)
 {
     return(MapperHelpers.ToVal <T>(dr[key]));
 }
示例#4
0
 public static Guid GetGuid(this IDataReader dr, string key)
 {
     return(MapperHelpers.ToGuid(dr[key]));
 }
示例#5
0
 public static Guid?ToGuidNullable(this IDataReader dr, string key)
 {
     return(MapperHelpers.ToGuidNullable(dr[key]));
 }
示例#6
0
 public static long GetLong(this IDataReader dr, string key, long ifNull = 0)
 {
     return(MapperHelpers.ToLong(dr[key]));
 }
示例#7
0
 public static int GetInt(this IDataReader dr, string key)
 {
     return(MapperHelpers.ToInt(dr[key]));
 }
示例#8
0
 public static float GetFloat(this IDataReader dr, string key)
 {
     return(MapperHelpers.ToFloat(dr[key]));
 }
示例#9
0
 public static decimal GetDecilmal(this IDataReader dr, string key)
 {
     return(MapperHelpers.ToDecilmal(dr[key]));
 }
示例#10
0
 public static string GetString(this IDataReader dr, string key)
 {
     return(MapperHelpers.ToStr(dr[key]));
 }