Creates a list of values collections from a list of items.

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

Syntax

C#
public static List<PropertyValues> CreateValues<T>(
	ItemMapping mapping,
	List<T> items
)
Visual Basic
Public Shared Function CreateValues(Of T) ( _
	mapping As ItemMapping, _
	items As List(Of T) _
) As List(Of PropertyValues)
Visual C++
public:
generic<typename T>
static List<PropertyValues^>^ CreateValues(
	ItemMapping^ mapping, 
	List<T>^ items
)

Parameters

mapping
Type: Simol..::..ItemMapping
The item mapping.
items
Type: System.Collections.Generic..::..List<(Of <(<'T>)>)>
The items.

Type Parameters

T

Return Value

Remarks

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

See Also