Share via


EntityParameterCollection.Insert Method

Definition

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.Entity.Core.EntityClient.EntityParameter value);
override this.Insert : int * System.Data.Entity.Core.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, 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