public void Replace <TProperty>(Expression <Func <TMessage, TProperty> > propertyExpression, Func <SourceContext <TProperty, TMessage>, TProperty> valueProvider) { var specification = new InputPropertyTransformSpecification <TMessage, TMessage, TProperty>(propertyExpression.GetPropertyInfo(), valueProvider); _specifications.Add(specification); }
public void Replace <TProperty>(PropertyInfo property, Transformation.IPropertyProvider <TProperty, TMessage> propertyProvider) { var specification = new InputPropertyTransformSpecification <TMessage, TMessage, TProperty>(property, propertyProvider); _specifications.Add(specification); }