EntityParameterCollection.Item[] Propriedade
Definição
Obtém o EntityParameter com um atributo especificado.Gets the EntityParameter with a specified attribute.
Sobrecargas
| Item[Int32] |
Obtém o EntityParameter no índice especificado.Gets the EntityParameter at the specified index. |
| Item[String] |
Obtém o EntityParameter com o nome especificado.Gets the EntityParameter with the specified name. |
Item[Int32]
Obtém o EntityParameter no índice especificado.Gets the EntityParameter at the specified index.
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
Parâmetros
- index
- Int32
O índice baseado em zero do parâmetro a ser recuperado.The zero-based index of the parameter to retrieve.
Valor da propriedade
O EntityParameter no índice especificado.The EntityParameter at the specified index.
Exceções
O índice especificado não existe.The specified index does not exist.
Aplica-se a
Item[String]
Obtém o EntityParameter com o nome especificado.Gets the EntityParameter with the specified name.
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
Parâmetros
- parameterName
- String
O nome do parâmetro a ser recuperado.The name of the parameter to retrieve.
Valor da propriedade
O EntityParameter com o nome especificado.The EntityParameter with the specified name.
Exceções
O nome especificado não existe.The specified name does not exist.