EntityParameterCollection.Insert Method

Definition

Inserts an EntityParameter object into the EntityParameterCollection.

Overloads

Insert(Int32, EntityParameter)

Inserts a EntityParameter object into the EntityParameterCollection at the specified index.

Insert(Int32, Object)

Inserts an Object into the EntityParameterCollection at the specified index.

Insert(Int32, EntityParameter)

Inserts a EntityParameter object into the EntityParameterCollection at the specified index.

public:
 void Insert(int index, System::Data::EntityClient::EntityParameter ^ value);
public void Insert (int index, System.Data.EntityClient.EntityParameter value);
override this.Insert : int * System.Data.EntityClient.EntityParameter -> unit
Public Sub Insert (index As Integer, value As EntityParameter)

Parameters

index
Int32

The zero-based index at which value should be inserted.

value
EntityParameter

A EntityParameter object to be inserted in the EntityParameterCollection.

Applies to

Insert(Int32, Object)

Inserts an Object into the EntityParameterCollection at the specified index.

public:
 override void Insert(int index, System::Object ^ value);
public override void Insert (int index, object value);
override this.Insert : int * obj -> unit
Public Overrides Sub Insert (index As Integer, value As Object)

Parameters

index
Int32

The zero-based index at which value should be inserted.

value
Object

An Object to be inserted in the EntityParameterCollection.

Applies to