IRelationalCommandDiagnosticsLogger.DataReaderClosing Method      
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Logs for the DataReaderClosing event.
public Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult DataReaderClosing(Microsoft.EntityFrameworkCore.Storage.IRelationalConnection connection, System.Data.Common.DbCommand command, System.Data.Common.DbDataReader dataReader, Guid commandId, int recordsAffected, int readCount, DateTimeOffset startTime);
	abstract member DataReaderClosing : Microsoft.EntityFrameworkCore.Storage.IRelationalConnection * System.Data.Common.DbCommand * System.Data.Common.DbDataReader * Guid * int * int * DateTimeOffset -> Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult
	Public Function DataReaderClosing (connection As IRelationalConnection, command As DbCommand, dataReader As DbDataReader, commandId As Guid, recordsAffected As Integer, readCount As Integer, startTime As DateTimeOffset) As InterceptionResult
	Parameters
- connection
 - IRelationalConnection
 
The connection.
- command
 - DbCommand
 
The database command object.
- dataReader
 - DbDataReader
 
The data reader.
- recordsAffected
 - Int32
 
The number of records in the database that were affected.
- readCount
 - Int32
 
The number of records that were read.
- startTime
 - DateTimeOffset
 
The time that the operation was started.
Returns
The result of execution, which may have been modified by an interceptor.