예제 #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]));
 }