DbDataReader.Read Method

Definition

When overridden in a derived class, advances the reader to the next record in a result set.

public:
 abstract bool Read();
public abstract bool Read ();
abstract member Read : unit -> bool
Public MustOverride Function Read () As Boolean

Returns

true if there are more rows; otherwise, false.

Implements

Remarks

The default position of a data reader is before the first record. Therefore, you must call Read to begin accessing data.

Applies to

See also