[]
Creates a view based on the specified ADO.NET DataTable.
public static View<DataRow> AsLive(this DataTable table)
| Type | Name | Description |
|---|---|---|
| DataTable | table | The DataTable to expose as a view. |
| Type | Description |
|---|---|
| View<DataRow> | A view that contains the same elements as table. |
Creates a view based on the specified ADO.NET DataTable.
public static View<TRow> AsLive<TRow>(this DataTable table) where TRow : DataRow
| Type | Name | Description |
|---|---|---|
| DataTable | table | The typed data table to expose as a view. |
| Type | Description |
|---|---|
| View<TRow> | A view that contains the same elements as table. |
| Name | Description |
|---|---|
| TRow | The type of the rows in the table. |
Creates a view based on the specified typed data table.
public static View<TRow> AsLive<TRow>(this TypedTableBase<TRow> table) where TRow : DataRow
| Type | Name | Description |
|---|---|---|
| TypedTableBase<TRow> | table | The typed data table to expose as a view. |
| Type | Description |
|---|---|
| View<TRow> | A view that contains the same elements as table. |
| Name | Description |
|---|---|
| TRow | The type of the rows in the table. |