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 (24.3.0.1000)
Syntax
public void AddMapping(
	string propertyName,
	Action<TSource, TTarget> mappingRule
)

Parameters

propertyName
Type: SystemString
Name of the property.
mappingRule
Type: SystemActionTSource, TTarget
The mapping rule.
See Also