Delegates inserting of a new item created based on the specified parameters to the bound managed item collection.

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

Syntax

C#
public Entity InsertNewItem(
	int index,
	params Object[] parameters
)
Visual Basic (Declaration)
Public Function InsertNewItem ( _
	index As Integer, _
	ParamArray parameters As Object() _
) As Entity

Parameters

index
Type: System..::.Int32
Zero-based index to insert the new item to.
parameters
Type: array< System..::.Object >[]()[]
List of custom parameters representing values that can be used for creating the new item.

Return Value

The entity wrapping the new item created and inserted into the bound managed item collection.

See Also