共用方式為


EntityParameterCollection 類別

定義

類別,表示 EntityCommand 中使用的參數集合

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1010:CollectionsShouldImplementGenericInterface")]
public sealed class EntityParameterCollection : System.Data.Common.DbParameterCollection
type EntityParameterCollection = class
    inherit DbParameterCollection
Public NotInheritable Class EntityParameterCollection
Inherits DbParameterCollection
繼承
EntityParameterCollection
屬性

屬性

Count

取得 Integer,其中包含 中的 EntityParameterCollection 專案數目。

IsFixedSize

取得值,指出 EntityParameterCollection 是否有固定的大小。

IsReadOnly

取得值,這個值表示 EntityParameterCollection 是否為唯讀。

IsSynchronized

取得值,表示 EntityParameterCollection 是否同步處理。

Item[Int32]

取得指定索引處的 EntityParameter

Item[String]

取得具有指定名稱的 EntityParameter

SyncRoot

取得 物件,這個物件可用來同步存取 。 EntityParameterCollection

方法

Add(EntityParameter)

將指定的 EntityParameter 物件加入至 EntityParameterCollection

Add(Object)

將指定的物件加入 EntityParameterCollection 中。

Add(String, DbType)

EntityParameter 加入至 EntityParameterCollection (已知參數名稱和資料類型)。

Add(String, DbType, Int32)

EntityParameter 加入至 EntityParameterCollection (已知參數名稱、資料類型和資料行長度)。

AddRange(Array)

將值的陣列加入至 的 EntityParameterCollection 結尾。

AddRange(EntityParameter[])

將值的陣列 EntityParameter 加入至 的 EntityParameterCollection 結尾。

AddWithValue(String, Object)

將值加入至 EntityParameterCollection 結尾。

Clear()

EntityParameterCollection 移除所有 EntityParameter 物件。

Contains(Object)

判斷指定的 Object 是否在這個 中 EntityParameterCollection

Contains(String)

判斷指定的 EntityParameter 是否在這個 中 EntityParameterCollection

CopyTo(Array, Int32)

將目前 EntityParameterCollection 的所有項目複製到指定的一維 Array,從指定的目的 Array 索引開始。

CopyTo(EntityParameter[], Int32)

將目前 EntityParameterCollection 的所有項目複製到指定的 EntityParameterCollection,從指定的目的索引開始。

GetEnumerator()

傳回逐一查看 的 EntityParameterCollection 列舉值。

IndexOf(EntityParameter)

取得集合中指定 EntityParameter 的位置。

IndexOf(Object)

取得集合中指定 Object 的位置。

IndexOf(String)

取得集合中具有指定名稱之指定 EntityParameter 的位置。

Insert(Int32, EntityParameter)

EntityParameter 物件插入 EntityParameterCollection 的指定索引處。

Insert(Int32, Object)

Object 插入至 EntityParameterCollection 的指定索引處。

Remove(EntityParameter)

從集合移除指定的 EntityParameter

Remove(Object)

從集合移除指定的參數。

RemoveAt(Int32)

EntityParameter 的指定索引處移除 EntityParameterCollection

RemoveAt(String)

EntityParameter 的指定參數名稱處移除 EntityParameterCollection

適用於