C1.LiveLinq.AdoNet Namespace > AdoNetExtensions Class > AsIndexed Method : AsIndexed(DataTable) Method |
'Declaration
Public Overloads Shared Function AsIndexed( _ ByVal table As System.Data.DataTable _ ) As IndexedDataTable(Of DataRow)
public static IndexedDataTable<DataRow> AsIndexed( System.Data.DataTable table )
Use this method to index ADO.NET data tables and query them using the query operators optimized with indexing.
Elements of the source data table aren't duplicated or copied to a new collection. This method just wraps the original data table in an IndexedDataTable<DataRow>.
Note: The IndexedDataTable<DataRow> wrapper is owned by the original System.Data.DataTable object (in fact, it is stored in its ExtendedProperties). So, if you create a wrapper for the same data table several times, it will be the same object.Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2