ModelMappingTSource, TTargetAddMapping Method

Adds a mapping rule for a property. The mapping rule is a call back method that will be called in order to do a custom transfer of data from the source over to the target property.

Namespace: Dundas.BI.WebApi.Models
Assembly: Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntax
public void AddMapping(
	string propertyName,
	Action<TSource, TTarget> mappingRule
)

Parameters

propertyName  String
Name of the property.
mappingRule  ActionTSource, TTarget
The mapping rule.
See Also