DataRowCollection 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示 DataTable 的資料列集合。
public ref class DataRowCollection sealed : System::Data::InternalDataCollectionBase
public ref class DataRowCollection : System::Data::InternalDataCollectionBase
public sealed class DataRowCollection : System.Data.InternalDataCollectionBase
[System.Serializable]
public class DataRowCollection : System.Data.InternalDataCollectionBase
type DataRowCollection = class
inherit InternalDataCollectionBase
[<System.Serializable>]
type DataRowCollection = class
inherit InternalDataCollectionBase
Public NotInheritable Class DataRowCollection
Inherits InternalDataCollectionBase
Public Class DataRowCollection
Inherits InternalDataCollectionBase
- 繼承
- 屬性
範例
本節中的第一個範例會列印 中 DataRowCollection每個數據列的數據行 1 值。 第二個範例會將使用 NewRow 方法建立的新資料列新增至 DataRowCollection。
private void ShowRows(DataTable table)
{
// Print the number of rows in the collection.
Console.WriteLine(table.Rows.Count);
// Print the value of columns 1 in each row
foreach(DataRow row in table.Rows)
{
Console.WriteLine(row[1]);
}
}
private void AddRow(DataTable table)
{
DataRowCollection rowCollection = table.Rows;
// Instantiate a new row using the NewRow method.
DataRow newRow = table.NewRow();
// Insert code to fill the row with values.
// Add the row to the DataRowCollection.
table.Rows.Add(newRow);
}
Private Sub ShowRows(Byval table As DataTable)
' Print the number of rows in the collection.
Console.WriteLine(table.Rows.Count)
Dim row As DataRow
' Print the value of columns 1 in each row
For Each row In table.Rows
Console.WriteLine(row(1))
Next
End Sub
Private Sub AddRow(ByVal table As DataTable)
' Instantiate a new row using the NewRow method.
Dim newRow As DataRow = table.NewRow()
' Insert code to fill the row with values.
' Add the row to the DataRowCollection.
table.Rows.Add(newRow)
End Sub
備註
DataRowCollection是的主要元件DataTable。 DataColumnCollection雖然會定義數據表的架構,DataRowCollection但會包含數據表的實際數據,其中每個 DataRow 數據都DataRowCollection代表單一數據列。
您可以呼叫 Add 和 Remove 方法,從 插入和刪除 DataRow 物件 DataRowCollection。 您也可以呼叫 Find 方法來搜尋 DataRow 主鍵數據行中包含特定值的物件,以及 Contains 搜尋單一單字或片語之字元型數據的方法。
對於其他作業,例如排序或篩選 DataRowCollection,請使用 相關聯 DataTable上DataRowCollection的方法。
屬性
Count |
取得此集合中的 DataRow 物件總數。 |
Count |
取得集合中的項目總數。 (繼承來源 InternalDataCollectionBase) |
IsReadOnly |
取得值,這個值表示 InternalDataCollectionBase 是否為唯讀。 (繼承來源 InternalDataCollectionBase) |
IsSynchronized |
取得值,表示 InternalDataCollectionBase 是否同步處理。 (繼承來源 InternalDataCollectionBase) |
Item[Int32] |
取得在指定索引處的資料列。 |
List |
表示 DataTable 的資料列集合。 |
List |
取得集合的項目做為清單。 (繼承來源 InternalDataCollectionBase) |
SyncRoot |
取得可以用來同步集合的物件。 (繼承來源 InternalDataCollectionBase) |
方法
擴充方法
Cast<TResult>(IEnumerable) |
將 IEnumerable 的項目轉換成指定的型別。 |
OfType<TResult>(IEnumerable) |
根據指定的型別來篩選 IEnumerable 的項目。 |
AsParallel(IEnumerable) |
啟用查詢的平行化作業。 |
AsQueryable(IEnumerable) |
將 IEnumerable 轉換成 IQueryable。 |
適用於
執行緒安全性
此類型適用於多線程讀取作業。 您必須同步處理任何寫入作業。