DataColumnCollection.CanRemove(DataColumn) Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Checks whether a specific column can be removed from the collection.
public:
bool CanRemove(System::Data::DataColumn ^ column);
public bool CanRemove(System.Data.DataColumn? column);
public bool CanRemove(System.Data.DataColumn column);
member this.CanRemove : System.Data.DataColumn -> bool
Public Function CanRemove (column As DataColumn) As Boolean
- column
- DataColumn
A DataColumn in the collection.
true
if the column can be removed. false
if,
The
column
parameter isnull
.The column does not belong to this collection.
The column is part of a relationship.
Another column's expression depends on this column.
The column
parameter is null.
The column does not belong to this collection.
-or-
The column is part of a relationship.
-or-
Another column's expression depends on this column.
The following example first uses the Contains method to determine whether a particular column is found in the collection. If found, the CanRemove method tests whether the column can be removed. If so, the column is removed with the Remove method.
private void RemoveColumn(string columnName, DataTable table)
{
DataColumnCollection columns = table.Columns;
if (columns.Contains(columnName))
if (columns.CanRemove(columns[columnName]))
columns.Remove(columnName);
}
Private Sub RemoveColumn( _
columnName As String, table As DataTable)
Dim columns As DataColumnCollection = table.Columns
If columns.Contains(columnName) Then
If columns.CanRemove(columns(columnName)) Then
columns.Remove(columnName)
End If
End If
End Sub
The CanRemove method performs several checks before returning a true
or false
result. This includes the following: whether the column exists, belongs to the table, or is involved in a constraint or relation.
Use the CanRemove method before you try to remove any column from a collection. You can also use the Contains method to determine whether a particular column exists before you try to remove it.
Toode | Versioonid |
---|---|
.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 |
Toote „.NET“ tagasiside
.NET on avatud lähtekoodiga projekt. Tagasiside andmiseks valige link: