Прочетете на английски Редактиране

Споделяне чрез


DataSet.DefaultViewManager Property

Definition

Gets a custom view of the data contained in the DataSet to allow filtering, searching, and navigating using a custom DataViewManager.

C#
[System.ComponentModel.Browsable(false)]
public System.Data.DataViewManager DefaultViewManager { get; }
C#
[System.ComponentModel.Browsable(false)]
[System.Data.DataSysDescription("DataSetDefaultViewDescr")]
public System.Data.DataViewManager DefaultViewManager { get; }

Property Value

A DataViewManager object.

Attributes

Examples

The following example gets the default DataViewManager for a DataSet, and adds a DataTable to the DataTableCollection.

VB
Private Sub GetDefaultDataViewManager()
    ' Get a DataSet object's DefaultViewManager.
     Dim view As DataViewManager = DataSet1.DefaultViewManager

    ' Add a DataTable to the DataTableCollection.
    Dim table As DataTable
    table = New DataTable("TableName")
    view.DataSet.Tables.Add(table)
End Sub

Remarks

The DataViewManager returned by the DefaultViewManager property allows you to create custom settings for each DataTable in the DataSet.

When you obtain a DataView from a DataTable, the sort order, filtering, and DataViewRowState are configured according to the settings in the DefaultViewManager property.

Applies to

Продукт Версии
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also