DataColumnMappingCollection 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
包含 DataColumnMapping 物件的集合。
public ref class DataColumnMappingCollection sealed : MarshalByRefObject, System::Collections::IList, System::Data::IColumnMappingCollection
public ref class DataColumnMappingCollection sealed : MarshalByRefObject, System::Data::IColumnMappingCollection
public sealed class DataColumnMappingCollection : MarshalByRefObject, System.Collections.IList, System.Data.IColumnMappingCollection
public sealed class DataColumnMappingCollection : MarshalByRefObject, System.Data.IColumnMappingCollection
type DataColumnMappingCollection = class
inherit MarshalByRefObject
interface ICollection
interface IEnumerable
interface IList
interface IColumnMappingCollection
type DataColumnMappingCollection = class
inherit MarshalByRefObject
interface IColumnMappingCollection
interface IList
interface ICollection
interface IEnumerable
Public NotInheritable Class DataColumnMappingCollection
Inherits MarshalByRefObject
Implements IColumnMappingCollection, IList
Public NotInheritable Class DataColumnMappingCollection
Inherits MarshalByRefObject
Implements IColumnMappingCollection
- 繼承
- 實作
範例
下列範例會使用 DataTableMapping 至其ColumnMappings集合中的 數AddDataColumnMapping個 物件,然後顯示這些對應源數據行的清單。 這個範例假設 DataTableMapping 已經建立 。
public void ShowColumnMappings()
{
// ...
// create tableMapping
// ...
tableMapping.ColumnMappings.Add("Category Name","DataCategory");
tableMapping.ColumnMappings.Add("Description","DataDescription");
tableMapping.ColumnMappings.Add("Picture","DataPicture");
Console.WriteLine("Column Mappings");
for(int i=0;i < tableMapping.ColumnMappings.Count;i++)
{
Console.WriteLine(" {0} {1}", i,
tableMapping.ColumnMappings[i].ToString());
}
}
Public Sub ShowColumnMappings()
' ...
' create tableMapping
' ...
tableMapping.ColumnMappings.Add( _
"Category Name", "DataCategory")
tableMapping.ColumnMappings.Add( _
"Description", "DataDescription")
tableMapping.ColumnMappings.Add( _
"Picture", "DataPicture")
Console.WriteLine("Column Mappings:")
Dim i As Integer
For i = 0 To tableMapping.ColumnMappings.Count - 1
Console.WriteLine(" {0} {1}", i, _
tableMapping.ColumnMappings(i).ToString())
Next i
End Sub
建構函式
DataColumnMappingCollection() |
屬性
Count |
取得集合中 DataColumnMapping 物件的數目。 |
Item[Int32] |
取得或設定在指定索引處的 DataColumnMapping 物件。 |
Item[String] |
取得或設定具有指定來源資料行名稱的 DataColumnMapping 物件。 |
方法
明確介面實作
ICollection.IsSynchronized |
取得值,這個值會指出 ICollection 的存取是否同步 (具備安全執行緒)。 |
ICollection.SyncRoot |
取得可用以同步存取 ICollection 的物件。 |
IColumnMappingCollection.Add(String, String) |
使用來源資料行和 DataColumnMapping 資料行名稱,將 DataColumnMappingCollection 物件加入至 DataSet。 |
IColumnMappingCollection.GetByDataSetColumn(String) |
取得具有指定之 DataColumnMapping 資料行名稱的 DataSet 物件。 |
IColumnMappingCollection.Item[String] |
取得或設定具有指定 |
IList.IsFixedSize |
取得值,指出 IList 是否有固定的大小。 |
IList.IsReadOnly |
取得值,這個值表示 IList 是否為唯讀。 |
IList.Item[Int32] |
在指定的索引位置上取得或設定項目。 |
擴充方法
Cast<TResult>(IEnumerable) |
將 IEnumerable 的項目轉換成指定的型別。 |
OfType<TResult>(IEnumerable) |
根據指定的型別來篩選 IEnumerable 的項目。 |
AsParallel(IEnumerable) |
啟用查詢的平行化作業。 |
AsQueryable(IEnumerable) |
將 IEnumerable 轉換成 IQueryable。 |
適用於
另請參閱
- ADO.NET 概觀 \(部分機器翻譯\)