EntityParameterCollection.Add Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Adiciona um EntityParameter ao EntityParameterCollection.
Sobrecargas
Add(EntityParameter) |
Adiciona o objeto EntityParameter especificado ao EntityParameterCollection. |
Add(Object) |
Adiciona o objeto especificado ao EntityParameterCollection. |
Add(String, DbType) |
Adiciona um EntityParameter ao EntityParameterCollection, dado o nome do parâmetro o tipo de dados. |
Add(String, DbType, Int32) |
Adiciona um EntityParameter ao EntityParameterCollection com o nome do parâmetro, o tipo de dados e o comprimento da coluna. |
Add(EntityParameter)
Adiciona o objeto EntityParameter especificado ao EntityParameterCollection.
public:
System::Data::EntityClient::EntityParameter ^ Add(System::Data::EntityClient::EntityParameter ^ value);
public System.Data.EntityClient.EntityParameter Add (System.Data.EntityClient.EntityParameter value);
override this.Add : System.Data.EntityClient.EntityParameter -> System.Data.EntityClient.EntityParameter
Public Function Add (value As EntityParameter) As EntityParameter
Parâmetros
- value
- EntityParameter
O EntityParameter a adicionar à coleção.
Retornos
Um novo objeto EntityParameter.
Exceções
O EntityParameter especificado no parâmetro value
já foi adicionado a este ou a outro EntityParameterCollection.
O parâmetro passado não é um EntityParameter.
O parâmetro value
é nulo.
Aplica-se a
Add(Object)
Adiciona o objeto especificado ao EntityParameterCollection.
public:
override int Add(System::Object ^ value);
public override int Add (object value);
override this.Add : obj -> int
Public Overrides Function Add (value As Object) As Integer
Parâmetros
Retornos
O índice do novo objeto EntityParameter.
Aplica-se a
Add(String, DbType)
Adiciona um EntityParameter ao EntityParameterCollection, dado o nome do parâmetro o tipo de dados.
public:
System::Data::EntityClient::EntityParameter ^ Add(System::String ^ parameterName, System::Data::DbType dbType);
public System.Data.EntityClient.EntityParameter Add (string parameterName, System.Data.DbType dbType);
override this.Add : string * System.Data.DbType -> System.Data.EntityClient.EntityParameter
Public Function Add (parameterName As String, dbType As DbType) As EntityParameter
Parâmetros
- parameterName
- String
O nome do parâmetro.
Retornos
Um novo objeto EntityParameter.
Aplica-se a
Add(String, DbType, Int32)
Adiciona um EntityParameter ao EntityParameterCollection com o nome do parâmetro, o tipo de dados e o comprimento da coluna.
public:
System::Data::EntityClient::EntityParameter ^ Add(System::String ^ parameterName, System::Data::DbType dbType, int size);
public System.Data.EntityClient.EntityParameter Add (string parameterName, System.Data.DbType dbType, int size);
override this.Add : string * System.Data.DbType * int -> System.Data.EntityClient.EntityParameter
Public Function Add (parameterName As String, dbType As DbType, size As Integer) As EntityParameter
Parâmetros
- parameterName
- String
O nome do parâmetro.
- size
- Int32
O comprimento da coluna.
Retornos
Um novo objeto EntityParameter.