共用方式為


EntityParameterCollection.Item[] 屬性

定義

取得具有指定屬性的 EntityParameter

多載

Item[Int32]

取得指定索引處的 EntityParameter

Item[String]

取得具有指定名稱的 EntityParameter

Item[Int32]

取得指定索引處的 EntityParameter

public:
 property System::Data::EntityClient::EntityParameter ^ default[int] { System::Data::EntityClient::EntityParameter ^ get(int index); void set(int index, System::Data::EntityClient::EntityParameter ^ value); };
public System.Data.EntityClient.EntityParameter this[int index] { get; set; }
member this.Item(int) : System.Data.EntityClient.EntityParameter with get, set
Default Public Property Item(index As Integer) As EntityParameter

參數

index
Int32

要擷取之參數的以零為基底的索引。

屬性值

指定之索引處的 EntityParameter

例外狀況

指定的索引不存在。

適用於

Item[String]

取得具有指定名稱的 EntityParameter

public:
 property System::Data::EntityClient::EntityParameter ^ default[System::String ^] { System::Data::EntityClient::EntityParameter ^ get(System::String ^ parameterName); void set(System::String ^ parameterName, System::Data::EntityClient::EntityParameter ^ value); };
public System.Data.EntityClient.EntityParameter this[string parameterName] { get; set; }
member this.Item(string) : System.Data.EntityClient.EntityParameter with get, set
Default Public Property Item(parameterName As String) As EntityParameter

參數

parameterName
String

要擷取的參數名稱。

屬性值

具有指定名稱的 EntityParameter

例外狀況

指定的名稱不存在。

適用於