EntityParameterCollection Class

 

Represents a collection of parameters associated with a EntityCommand.

Namespace:   System.Data.EntityClient
Assembly:  System.Data.Entity (in System.Data.Entity.dll)

System::Object
  System::MarshalByRefObject
    System.Data.Common::DbParameterCollection
      System.Data.EntityClient::EntityParameterCollection

public ref class EntityParameterCollection sealed : DbParameterCollection

NameDescription
System_CAPS_pubpropertyCount

Gets an Integer that contains the number of elements in the EntityParameterCollection. (Overrides DbParameterCollection::Count.)

System_CAPS_pubpropertyIsFixedSize

Gets a value that indicates whether the EntityParameterCollection has a fixed size. (Overrides DbParameterCollection::IsFixedSize.)

System_CAPS_pubpropertyIsReadOnly

Gets a value that indicates whether the EntityParameterCollection is read-only. (Overrides DbParameterCollection::IsReadOnly.)

System_CAPS_pubpropertyIsSynchronized

Gets a value that indicates whether the EntityParameterCollection is synchronized.(Overrides DbParameterCollection::IsSynchronized.)

System_CAPS_pubpropertyItem[Int32]

Gets the EntityParameter at the specified index.

System_CAPS_pubpropertyItem[String^]

Gets the EntityParameter with the specified name.

System_CAPS_pubpropertySyncRoot

Gets an object that can be used to synchronize access to the EntityParameterCollection. (Overrides DbParameterCollection::SyncRoot.)

NameDescription
System_CAPS_pubmethodAdd(EntityParameter^)

Adds the specified EntityParameter object to the EntityParameterCollection.

System_CAPS_pubmethodAdd(Object^)

Adds the specified object to the EntityParameterCollection.(Overrides DbParameterCollection::Add(Object^).)

System_CAPS_pubmethodAdd(String^, DbType)

Adds a EntityParameter to the EntityParameterCollection given the parameter name and the data type.

System_CAPS_pubmethodAdd(String^, DbType, Int32)

Adds a EntityParameter to the EntityParameterCollection with the parameter name, the data type, and the column length.

System_CAPS_pubmethodAddRange(Array^)

Adds an array of values to the end of the EntityParameterCollection.(Overrides DbParameterCollection::AddRange(Array^).)

System_CAPS_pubmethodAddRange(array<EntityParameter^>^)

Adds an array of EntityParameter values to the end of the EntityParameterCollection.

System_CAPS_pubmethodAddWithValue(String^, Object^)

Adds a value to the end of the EntityParameterCollection.

System_CAPS_pubmethodClear()

Removes all the EntityParameter objects from the EntityParameterCollection.(Overrides DbParameterCollection::Clear().)

System_CAPS_pubmethodContains(Object^)

Determines whether the specified Object is in this EntityParameterCollection.(Overrides DbParameterCollection::Contains(Object^).)

System_CAPS_pubmethodContains(String^)

Determines whether the specified EntityParameter is in this EntityParameterCollection.(Overrides DbParameterCollection::Contains(String^).)

System_CAPS_pubmethodCopyTo(Array^, Int32)

Copies all the elements of the current EntityParameterCollection to the specified one-dimensional Array starting at the specified destination Array index.(Overrides DbParameterCollection::CopyTo(Array^, Int32).)

System_CAPS_pubmethodCopyTo(array<EntityParameter^>^, Int32)

Copies all the elements of the current EntityParameterCollection to the specified EntityParameterCollection starting at the specified destination index.

System_CAPS_pubmethodCreateObjRef(Type^)

Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.(Inherited from MarshalByRefObject.)

System_CAPS_pubmethodEquals(Object^)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_pubmethodGetEnumerator()

Returns an enumerator that iterates through the EntityParameterCollection. (Overrides DbParameterCollection::GetEnumerator().)

System_CAPS_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetLifetimeService()

Retrieves the current lifetime service object that controls the lifetime policy for this instance.(Inherited from MarshalByRefObject.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_pubmethodIndexOf(EntityParameter^)

Gets the location of the specified EntityParameter in the collection.

System_CAPS_pubmethodIndexOf(Object^)

Gets the location of the specified Object in the collection.(Overrides DbParameterCollection::IndexOf(Object^).)

System_CAPS_pubmethodIndexOf(String^)

Gets the location of the specified EntityParameter with the specified name.(Overrides DbParameterCollection::IndexOf(String^).)

System_CAPS_pubmethodInitializeLifetimeService()

Obtains a lifetime service object to control the lifetime policy for this instance.(Inherited from MarshalByRefObject.)

System_CAPS_pubmethodInsert(Int32, EntityParameter^)

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

System_CAPS_pubmethodInsert(Int32, Object^)

Inserts an Object into the EntityParameterCollection at the specified index.(Overrides DbParameterCollection::Insert(Int32, Object^).)

System_CAPS_pubmethodRemove(EntityParameter^)

Removes the specified EntityParameter from the collection.

System_CAPS_pubmethodRemove(Object^)

Removes the specified parameter from the collection.(Overrides DbParameterCollection::Remove(Object^).)

System_CAPS_pubmethodRemoveAt(Int32)

Removes the EntityParameter from the EntityParameterCollection at the specified index.(Overrides DbParameterCollection::RemoveAt(Int32).)

System_CAPS_pubmethodRemoveAt(String^)

Removes the EntityParameter from the EntityParameterCollection at the specified parameter name.(Overrides DbParameterCollection::RemoveAt(String^).)

System_CAPS_pubmethodToString()

Returns a string that represents the current object.(Inherited from Object.)

NameDescription
System_CAPS_pubinterfaceSystem_CAPS_privpropertyIList::Item[Int32]

Gets or sets the element at the specified index.(Inherited from DbParameterCollection.)

System_CAPS_pubinterfaceSystem_CAPS_privpropertyIDataParameterCollection::Item[String^]

Gets or sets the parameter at the specified index.(Inherited from DbParameterCollection.)

NameDescription
System_CAPS_pubmethodAsParallel()

Overloaded. Enables parallelization of a query.(Defined by ParallelEnumerable.)

System_CAPS_pubmethodAsQueryable()

Overloaded. Converts an IEnumerable to an IQueryable.(Defined by Queryable.)

System_CAPS_pubmethodCast<TResult>()

Casts the elements of an IEnumerable to the specified type.(Defined by Enumerable.)

System_CAPS_pubmethodOfType<TResult>()

Filters the elements of an IEnumerable based on a specified type.(Defined by Enumerable.)

.NET Framework
Available since 3.5

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: