See also:
NTier Windows Forms Framework Home
NTier Framework API reference

Get an instance of the entity or collection that will actually be shown on the form.

Namespace: NTier.Actions
Assembly: NTier.Actions (in NTier.Actions.dll) Version: 1.0.0.0

Syntax

C#
protected virtual Object GetEntityToEdit(
	Object unbranchedEditEntitySource,
	Object editEntitySource
)
Visual Basic
Protected Overridable Function GetEntityToEdit ( 
	unbranchedEditEntitySource As Object,
	editEntitySource As Object
) As Object
Visual C++
protected:
virtual Object^ GetEntityToEdit(
	Object^ unbranchedEditEntitySource, 
	Object^ editEntitySource
)

Parameters

unbranchedEditEntitySource
Type: System..::..Object
The entity data that is data bound to this action, or that was passed into the constructor, before it was branched for editing on the new form.
editEntitySource
Type: System..::..Object
The entity data that is data bound to this action, or that was passed into the constructor, after it was branched for editing on the new form.

Return Value

Type: Object

See Also