ModelDataExtensionsCopyToTSource, TTarget Method (TSource, TTarget, IReadOnlyDictionaryString, ActionTSource, TTarget)

Copies properties from the source type to the target type using default mapping rule - mapping by name.

Namespace:  Dundas.BI.WebApi.Models
Assembly:  Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (24.1.0.1001)
Syntax
public static void CopyTo<TSource, TTarget>(
	this TSource source,
	TTarget target,
	IReadOnlyDictionary<string, Action<TSource, TTarget>> mappingRules
)

Parameters

source
Type: TSource
The source object - object which properties will be copied over the target.
target
Type: TTarget
The target object - object which properties will be copied on to.
mappingRules
Type: System.Collections.GenericIReadOnlyDictionaryString, ActionTSource, TTarget
The mapping rules.

Type Parameters

TSource
The type of the source.
TTarget
The type of the target.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also