DataAccessGetDataRowFromReader Method  | 
 
            Fill a DataRow from data extracted from a given data reader
            
 
    Namespace: 
   WorkflowGen.My.Data
    Assembly:
   WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.7.2.0 (4.7.2.0)
Syntaxpublic DataRow GetDataRowFromReader(
	DbDataReader dataReader,
	DataTable dataTable
)
Public Function GetDataRowFromReader ( 
	dataReader As DbDataReader,
	dataTable As DataTable
) As DataRow
Parameters
- dataReader
 - Type: System.Data.CommonDbDataReader
A DataReader to extract the row from - dataTable
 - Type: System.DataDataTable
A DataTable to copy the row structure from 
Return Value
Type: 
DataRowA DataRow containing data extracted from a given data reader
See Also