Creates a values collection from the specified item using a dynamic mapping.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public static PropertyValues CreateValues(
	ItemMapping mapping,
	Object item
)
Visual Basic
Public Shared Function CreateValues ( _
	mapping As ItemMapping, _
	item As Object _
) As PropertyValues
Visual C++
public:
static PropertyValues^ CreateValues(
	ItemMapping^ mapping, 
	Object^ item
)

Parameters

mapping
Type: Simol..::..ItemMapping
The item mapping.
item
Type: System..::..Object
The item.

Return Value

Remarks

The returned values collection will contain entries for all mapped properties (including null-value properties).

See Also