Creates a new entity wrapping the specified object. Inheriters should override this method to create their own entity type.

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

Syntax

C#
protected virtual Entity CreateEntity(
	Object item
)
Visual Basic (Declaration)
Protected Overridable Function CreateEntity ( _
	item As Object _
) As Entity

Parameters

item
Type: System..::.Object
Entity item to be wrapped by the new entity.

Return Value

The new entity that wraps the specified object.

See Also