Open this page in the API Guide

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

Parameters

propertyName
Type: System.String
Name of the property.
mappingRule
Type: System.Action<TSource, TTarget>
The mapping rule.
See Also