Imports the data from a DataReader into a Table at the point of the current element in the document.

 public Table ImportData(System.Data.IDataReader data)
Public Function ImportData(ByVal data As System.Data.IDataReader) As Table

DataReader to import the data from.

The Table that the data was imported into.

Table tbl = e.ImportData(dr);
Dim tbl As Table = e.ImportData(dr)