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