DataSource for Entity Framework in WPF
C1.LiveLinq.AdoNet Namespace / AdoNetExtensions Class / AsLive Method / AsLive(DataTable) Method
The System.Data.DataTable to expose as a view.

In This Topic
    AsLive(DataTable) Method
    In This Topic
    Creates a view based on the specified ADO.NET System.Data.DataTable.
    Syntax
    'Declaration
     
    Public Overloads Shared Function AsLive( _
       ByVal table As DataTable _
    ) As View(Of DataRow)
    public static View<DataRow> AsLive( 
       DataTable table
    )

    Parameters

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

    Return Value

    A view that contains the same elements as table.
    See Also