Click or drag to resize
IMapperMapToCollectionT Method
If implementd, recursively copies fields from incoming collection of domain objects to the persistent collection. Must be called on incoming data for updates.

Namespace: Jeneva
Assembly: Jeneva.Net-1.1 (in Jeneva.Net-1.1.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax
void MapToCollection<T>(
	IEnumerable<T> source,
	IEnumerable<T> dest
)
where T : Dtobase

Parameters

source
Type: System.Collections.GenericIEnumerableT
Incoming collection of domain objects
dest
Type: System.Collections.GenericIEnumerableT
Persistent collection (ISet or IList)

Type Parameters

T
DTO object type
See Also