82 return reader.GetFieldValue<T>(reader.
GetOrdinal(name));
string GetString(int ordinal)
double GetDouble(int ordinal)
long GetBytes(int ordinal, long dataOffset, byte[]? buffer, int bufferOffset, int length)
Type GetFieldType(int ordinal)
virtual Stream GetStream(int ordinal)
virtual object GetProviderSpecificValue(int ordinal)
bool GetBoolean(int ordinal)
float GetFloat(int ordinal)
byte GetByte(int ordinal)
decimal GetDecimal(int ordinal)
long GetChars(int ordinal, long dataOffset, char[]? buffer, int bufferOffset, int length)
bool IsDBNull(int ordinal)
char GetChar(int ordinal)
string GetDataTypeName(int ordinal)
int GetInt32(int ordinal)
virtual Type GetProviderSpecificFieldType(int ordinal)
object GetValue(int ordinal)
DateTime GetDateTime(int ordinal)
DbDataReader GetData(int ordinal)
int GetOrdinal(string name)
long GetInt64(int ordinal)
Task< bool > IsDBNullAsync(int ordinal)
short GetInt16(int ordinal)
Guid GetGuid(int ordinal)
virtual TextReader GetTextReader(int ordinal)
static Guid GetGuid(this DbDataReader reader, string name)
static double GetDouble(this DbDataReader reader, string name)
static Type GetProviderSpecificFieldType(this DbDataReader reader, string name)
static Type GetFieldType(this DbDataReader reader, string name)
static Stream GetStream(this DbDataReader reader, string name)
static TextReader GetTextReader(this DbDataReader reader, string name)
static DateTime GetDateTime(this DbDataReader reader, string name)
static DbDataReader GetData(this DbDataReader reader, string name)
static object GetValue(this DbDataReader reader, string name)
static T GetFieldValue< T >(this DbDataReader reader, string name)
static long GetInt64(this DbDataReader reader, string name)
static byte GetByte(this DbDataReader reader, string name)
static float GetFloat(this DbDataReader reader, string name)
static bool GetBoolean(this DbDataReader reader, string name)
static Task< T > GetFieldValueAsync< T >(this DbDataReader reader, string name, CancellationToken cancellationToken=default(CancellationToken))
static string GetString(this DbDataReader reader, string name)
static char GetChar(this DbDataReader reader, string name)
static decimal GetDecimal(this DbDataReader reader, string name)
static long GetChars(this DbDataReader reader, string name, long dataOffset, char[] buffer, int bufferOffset, int length)
static Task< bool > IsDBNullAsync(this DbDataReader reader, string name, CancellationToken cancellationToken=default(CancellationToken))
static long GetBytes(this DbDataReader reader, string name, long dataOffset, byte[] buffer, int bufferOffset, int length)
static bool IsDBNull(this DbDataReader reader, string name)
static int GetInt32(this DbDataReader reader, string name)
static short GetInt16(this DbDataReader reader, string name)
static void AssertNotNull([NotNull] DbDataReader reader)
static string GetDataTypeName(this DbDataReader reader, string name)
static object GetProviderSpecificValue(this DbDataReader reader, string name)