Esempio n. 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());
 }
Esempio n. 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());
 }
Esempio n. 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());
 }
Esempio n. 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());
 }
Esempio n. 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());
 }
Esempio n. 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());
 }
Esempio n. 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());
 }
Esempio n. 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());
 }
Esempio n. 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());
 }
Esempio n. 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());
 }
Esempio n. 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());
 }
Esempio n. 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());
 }