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 方法以从 DataRowCollection中插入和删除 DataRow 对象。 还可以调用 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。 |
适用于
线程安全性
此类型对于多线程读取操作是安全的。 必须同步任何写入操作。