[]
Provides a set of static (extension) methods for LiveLinq to DataSet.
public static class AdoNetExtensions
Name | Description |
---|---|
AsIndexed(DataTable) | Wraps a DataTable in an IndexedDataTable<DataRow> so it can be indexed and queried using the optimized query operators from IndexedQueryExtensions. |
AsIndexed<TRow>(DataTable) | Wraps a DataTable in an IndexedDataTable<TRow> so it can be indexed and queried using the optimized query operators from IndexedQueryExtensions. |
AsIndexed<TRow>(TypedTableBase<TRow>) | Wraps a typed ADO.NET data table in an IndexedDataTable<TRow> so it can be indexed and queried using the optimized query operators from IndexedQueryExtensions. |
AsLive(DataTable) | Creates a view based on the specified ADO.NET DataTable. |
AsLive<TRow>(DataTable) | Creates a view based on the specified ADO.NET DataTable. |
AsLive<TRow>(TypedTableBase<TRow>) | Creates a view based on the specified typed data table. |
BeginUpdate(DataSet) | Indicates that massive changes are being made in code, until EndUpdate(DataSet), to data tables in this DataSet. |
EndUpdate(DataSet) | Indicates the end of massive changes to data tables in this DataSet started with BeginUpdate(DataSet). |
IndexedField<T>(DataRow, DataColumn) | A hint to create and use an index on the specified data column. The hint has default action. |
IndexedField<T>(DataRow, DataColumn, IndexingHintAction) | A hint to create and use an index on the specified data column. The hint has specified action. |
IndexedField<T>(DataRow, int) | A hint to create and use an index on the specified data column. The hint has default action. |
IndexedField<T>(DataRow, int, IndexingHintAction) | A hint to create and use an index on the specified data column. The hint has specified action. |
IndexedField<T>(DataRow, string) | A hint to create and use an index on the specified data column. The hint has default action. |
IndexedField<T>(DataRow, string, IndexingHintAction) | A hint to create and use an index on the specified data column. The hint has specified action. |