DataView Konstruktorer
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Initierar en ny instans av DataView klassen.
Överlagringar
| Name | Description |
|---|---|
| DataView() |
Initierar en ny instans av DataView klassen. |
| DataView(DataTable) |
Initierar en ny instans av DataView klassen med angiven DataTable. |
| DataView(DataTable, String, String, DataViewRowState) |
Initierar en ny instans av DataView klassen med angiven DataTable, RowFilter, Sortoch DataViewRowState. |
DataView()
- Källa:
- DataView.cs
- Källa:
- DataView.cs
- Källa:
- DataView.cs
- Källa:
- DataView.cs
- Källa:
- DataView.cs
Initierar en ny instans av DataView klassen.
public:
DataView();
public DataView();
Public Sub New ()
Exempel
I följande exempel skapas en ny DataView.
private void MakeDataView()
{
DataView view = new DataView();
view.Table = DataSet1.Tables["Suppliers"];
view.AllowDelete = true;
view.AllowEdit = true;
view.AllowNew = true;
view.RowFilter = "City = 'Berlin'";
view.RowStateFilter = DataViewRowState.ModifiedCurrent;
view.Sort = "CompanyName DESC";
// Simple-bind to a TextBox control
Text1.DataBindings.Add("Text", view, "CompanyName");
}
Private Sub MakeDataView()
Dim view As New DataView()
view.Table = DataSet1.Tables("Suppliers")
view.AllowDelete = True
view.AllowEdit = True
view.AllowNew = True
view.RowFilter = "City = 'Berlin'"
view.RowStateFilter = DataViewRowState.ModifiedCurrent
view.Sort = "CompanyName DESC"
' Simple-bind to a TextBox control
Text1.DataBindings.Add("Text", view, "CompanyName")
End Sub
Se även
Gäller för
DataView(DataTable)
- Källa:
- DataView.cs
- Källa:
- DataView.cs
- Källa:
- DataView.cs
- Källa:
- DataView.cs
- Källa:
- DataView.cs
public:
DataView(System::Data::DataTable ^ table);
public DataView(System.Data.DataTable? table);
public DataView(System.Data.DataTable table);
new System.Data.DataView : System.Data.DataTable -> System.Data.DataView
Public Sub New (table As DataTable)
Parametrar
Exempel
I följande exempel skapas en ny DataView med angiven DataTable.
private void MakeDataView()
{
DataView view = new DataView(DataSet1.Tables["Suppliers"]);
// Bind a ComboBox control to the DataView.
Combo1.DataSource = view;
Combo1.DisplayMember = "Suppliers.CompanyName";
}
Private Sub MakeDataView()
Dim view As DataView
view = New DataView(DataSet1.Tables("Suppliers"))
' Bind a ComboBox control to the DataView.
Combo1.DataSource = view
Combo1.DisplayMember = "Suppliers.CompanyName"
End Sub
Se även
Gäller för
DataView(DataTable, String, String, DataViewRowState)
- Källa:
- DataView.cs
- Källa:
- DataView.cs
- Källa:
- DataView.cs
- Källa:
- DataView.cs
- Källa:
- DataView.cs
Initierar en ny instans av DataView klassen med angiven DataTable, RowFilter, Sortoch DataViewRowState.
public:
DataView(System::Data::DataTable ^ table, System::String ^ RowFilter, System::String ^ Sort, System::Data::DataViewRowState RowState);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members of types used in the filter expression might be trimmed.")]
public DataView(System.Data.DataTable table, string? RowFilter, string? Sort, System.Data.DataViewRowState RowState);
public DataView(System.Data.DataTable table, string? RowFilter, string? Sort, System.Data.DataViewRowState RowState);
public DataView(System.Data.DataTable table, string RowFilter, string Sort, System.Data.DataViewRowState RowState);
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members of types used in the filter expression might be trimmed.")>]
new System.Data.DataView : System.Data.DataTable * string * string * System.Data.DataViewRowState -> System.Data.DataView
new System.Data.DataView : System.Data.DataTable * string * string * System.Data.DataViewRowState -> System.Data.DataView
Public Sub New (table As DataTable, RowFilter As String, Sort As String, RowState As DataViewRowState)
Parametrar
- RowState
- DataViewRowState
A DataViewRowState som ska tillämpas på DataView.
- Attribut
Exempel
I följande exempel skapas en ny DataView med angiven DataTable.
private void MakeDataView(DataSet dataSet)
{
DataView view = new DataView(dataSet.Tables["Suppliers"],
"Country = 'UK'", "CompanyName",
DataViewRowState.CurrentRows);
view.AllowEdit = true;
view.AllowNew = true;
view.AllowDelete = true;
}
Private Sub MakeDataView(ByVal dataSet As DataSet)
Dim view As New DataView(dataSet.Tables("Suppliers"), _
"Country = 'UK'", "CompanyName", _
DataViewRowState.CurrentRows)
view.AllowEdit = True
view.AllowNew = True
view.AllowDelete = True
End Sub