Table of Contents

Struct RowReader

Namespace
Apache.Ignite.Table.Mapper
Assembly
Apache.Ignite.dll

Row reader for mappers. Reads columns in the order defined by the schema.

public ref struct RowReader
Inherited Members

Methods

ReadBigDecimal()

Reads the next column as a big decimal.

public BigDecimal? ReadBigDecimal()

Returns

BigDecimal?

Column value.

ReadBool()

Reads the next column as a boolean.

public bool? ReadBool()

Returns

bool?

Column value.

ReadByte()

Reads the next column as a byte.

[CLSCompliant(false)]
public sbyte? ReadByte()

Returns

sbyte?

Column value.

ReadBytes()

Reads the next column as a byte array.

public byte[]? ReadBytes()

Returns

byte[]

Column value.

ReadDate()

Reads the next column as a date.

public LocalDate? ReadDate()

Returns

LocalDate?

Column value.

ReadDateTime()

Reads the next column as a date and time.

public LocalDateTime? ReadDateTime()

Returns

LocalDateTime?

Column value.

ReadDecimal()

Reads the next column as a decimal.

public decimal? ReadDecimal()

Returns

decimal?

Column value.

ReadDouble()

Reads the next column as a double.

public double? ReadDouble()

Returns

double?

Column value.

ReadDuration()

Reads the next column as a duration.

public Duration? ReadDuration()

Returns

Duration?

Column value.

ReadFloat()

Reads the next column as a float.

public float? ReadFloat()

Returns

float?

Column value.

ReadGuid()

Reads the next column as a GUID.

public Guid? ReadGuid()

Returns

Guid?

Column value.

ReadInt()

Reads the next column as an int.

public int? ReadInt()

Returns

int?

Column value.

ReadLong()

Reads the next column as a long.

public long? ReadLong()

Returns

long?

Column value.

ReadPeriod()

Reads the next column as a period.

public Period? ReadPeriod()

Returns

Period

Column value.

ReadShort()

Reads the next column as a short.

public short? ReadShort()

Returns

short?

Column value.

ReadString()

Reads the next column as a string.

public string? ReadString()

Returns

string

Column value.

ReadTime()

Reads the next column as a time.

public LocalTime? ReadTime()

Returns

LocalTime?

Column value.

ReadTimestamp()

Reads the next column as a timestamp (instant).

public Instant? ReadTimestamp()

Returns

Instant?

Column value.

Skip()

Skips the current column.

public void Skip()

ToString()

Returns the fully qualified type name of this instance.

public override readonly string ToString()

Returns

string

The fully qualified type name.