[]
Creates a view based on the specified ADO.NET DataTable.
public static View<DataRow> AsLive(this DataTable table)
Public Shared Function AsLive(table As DataTable) As View(Of DataRow)
| 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
Public Shared Function AsLive(Of TRow As DataRow)(table As DataTable) As View(Of TRow)
| 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
Public Shared Function AsLive(Of TRow As DataRow)(table As TypedTableBase(Of TRow)) As View(Of TRow)
| 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. |