LocalView<TEntity>.CopyTo(TEntity[], Int32) Method

Definition

Copies to an array all entities of type TEntity that are being tracked and are not marked as Deleted.

public virtual void CopyTo (TEntity[] array, int arrayIndex);
abstract member CopyTo : 'Entity[] * int -> unit
override this.CopyTo : 'Entity[] * int -> unit
Public Overridable Sub CopyTo (array As TEntity(), arrayIndex As Integer)

Parameters

array
TEntity[]

The array into which to copy entities.

arrayIndex
Int32

The index into the array to start copying.

Implements

Remarks

See Local views of tracked entities in EF Core for more information and examples.

Applies to