示例#1
0
 /// <summary>
 /// Creates an instance of a class that implements the
 /// <see cref="IDataReaderMapper{T}"/> where T is <see cref="int"/>.
 /// </summary>
 public static IDataReaderMapper <int> Int32()
 {
     return(ValueTypeMappers.Int32());
 }
示例#2
0
 /// <summary>
 /// Creates an instance of a class that implements the
 /// <see cref="IDataReaderMapper{T}"/> where T is <see cref="Guid"/>.
 /// </summary>
 public static IDataReaderMapper <Guid> Guid()
 {
     return(ValueTypeMappers.Guid());
 }
示例#3
0
 /// <summary>
 /// Creates an instance of a class that implements the
 /// <see cref="IDataReaderMapper{T}"/> where T is <see cref="short"/>.
 /// </summary>
 public static IDataReaderMapper <short> Int16()
 {
     return(ValueTypeMappers.Int16());
 }
示例#4
0
 /// <summary>
 /// Creates an instance of a class that implements the
 /// <see cref="IDataReaderMapper{T}"/> where T is <see cref="double"/>.
 /// </summary>
 public static IDataReaderMapper <double> Double()
 {
     return(ValueTypeMappers.Double());
 }
示例#5
0
 /// <summary>
 /// Creates an instance of a class that implements the
 /// <see cref="IDataReaderMapper{T}"/> where T is <see cref="float"/>.
 /// </summary>
 public static IDataReaderMapper <float> Float()
 {
     return(ValueTypeMappers.Float());
 }
示例#6
0
 /// <summary>
 /// Creates an instance of a class that implements the
 /// <see cref="IDataReaderMapper{T}"/> where T is <see cref="DateTime"/>.
 /// </summary>
 public static IDataReaderMapper <DateTime> DateTime()
 {
     return(ValueTypeMappers.DateTime());
 }
示例#7
0
 /// <summary>
 /// Creates an instance of a class that implements the
 /// <see cref="IDataReaderMapper{T}"/> where T is <see cref="decimal"/>.
 /// </summary>
 public static IDataReaderMapper <decimal> Decimal()
 {
     return(ValueTypeMappers.Decimal());
 }
示例#8
0
 /// <summary>
 /// Creates an instance of a class that implements the
 /// <see cref="IDataReaderMapper{T}"/> where T is <see cref="char"/>.
 /// </summary>
 public static IDataReaderMapper <char> Char()
 {
     return(ValueTypeMappers.Char());
 }
示例#9
0
 /// <summary>
 /// Creates an instance of a class that implements the
 /// <see cref="IDataReaderMapper{T}"/> where T is <see cref="byte"/>.
 /// </summary>
 public static IDataReaderMapper <byte> Byte()
 {
     return(ValueTypeMappers.Byte());
 }
示例#10
0
 /// <summary>
 /// Creates an instance of a class that implements the
 /// <see cref="IDataReaderMapper{T}"/> where T is <see cref="bool"/>.
 /// </summary>
 public static IDataReaderMapper <bool> Boolean()
 {
     return(ValueTypeMappers.Boolean());
 }
示例#11
0
 /// <summary>
 /// Creates an instance of a class that implements the
 /// <see cref="IDataReaderMapper{T}"/> where T is <see cref="string"/>.
 /// </summary>
 public static IDataReaderMapper <string> String()
 {
     return(ValueTypeMappers.String());
 }
示例#12
0
 /// <summary>
 /// Creates an instance of a class that implements the
 /// <see cref="IDataReaderMapper{T}"/> where T is <see cref="long"/>.
 /// </summary>
 public static IDataReaderMapper <long> Long()
 {
     return(ValueTypeMappers.Long());
 }