Inserts a set of entities into the managed collection.

Namespace:  DlhSoft.Windows.Data
Assembly:  DlhSoft.Data.Core (in DlhSoft.Data.Core.dll)

Syntax

C#
public Entity[] InsertRange(
	int index,
	IEnumerable<SimpleEntityItem> simpleEntityItems
)
Visual Basic (Declaration)
Public Function InsertRange ( _
	index As Integer, _
	simpleEntityItems As IEnumerable(Of SimpleEntityItem) _
) As Entity()

Parameters

index
Type: System..::.Int32
The zero-based index at which the entities should be inserted.
simpleEntityItems
Type: System.Collections.Generic..::.IEnumerable<(Of <(SimpleEntityItem>)>)
Item definitions representing the entities to insert.

Return Value

The new entities.

See Also