Creates a view based on the specified ADO.NET DataTable.

Namespace:  C1.LiveLinq.AdoNet
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public static View<DataRow> AsLive(
	this DataTable table
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function AsLive ( _
	table As DataTable _
) As View(Of DataRow)

Parameters

table
Type: System.Data..::..DataTable
The DataTable to expose as a view.

Return Value

A view that contains the same elements as table.

See Also