Contains extension methods for converting between data frames and data tables,
and for reading data frames from databases.
SystemObject Extreme.DataDataExtensions
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static class DataExtensions
<ExtensionAttribute>
Public NotInheritable Class DataExtensions
[ExtensionAttribute]
public ref class DataExtensions abstract sealed
[<AbstractClassAttribute>]
[<SealedAttribute>]
[<ExtensionAttribute>]
type DataExtensions = class end
| Name | Description |
---|
  | ReadDataFrame(IDataReader, Int32) |
Reads a data frame from a data reader.
|
  | ReadDataFrame(IDataReader, IEnumerableString, Int32) |
Reads the specified columns from a data reader and returns them
as a data frame.
|
  | ReadDataFrameR(IDataReader, String, Int32, Boolean) |
Reads a data frame from a data reader and uses the specified column
as row keys.
|
  | ReadDataFrameR(IDataReader, String, IEnumerableString, Int32, Boolean) |
Reads the specified columns from a data reader and returns them
as a data frame using the specified column as row keys.
|
  | ToDataFrame(DataTable) |
Constructs a data frame from a data table.
|
  | ToDataFrame(DataTable, IEnumerableString) |
Constructs a data frame from the specified columns in a data table.
|
  | ToDataFrameR(DataTable, String) |
Constructs a data frame from a data table using the specified key column.
|
  | ToDataFrameR(DataTable, String, IEnumerableString) |
Constructs a data frame from the specified columns in a data table using the specified key column.
|
  | ToDataTable(IDataFrame) |
Constructs a data table from a data frame.
|
  | ToDataTable(IDataFrame, String) |
Constructs a data table from a data frame.
|
  | ToDataTableC(IDataFrame, IEnumerableC) |
Constructs a data table from the specified columns a data frame.
|
  | ToDataTableC(IDataFrame, String, IEnumerableC) |
Constructs a data table from the specified columns a data frame.
|
Top
Reference