示例#1
0
        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);
        }
示例#2
0
        public void Replace <TProperty>(PropertyInfo property, Transformation.IPropertyProvider <TProperty, TMessage> propertyProvider)
        {
            var specification = new InputPropertyTransformSpecification <TMessage, TMessage, TProperty>(property, propertyProvider);

            _specifications.Add(specification);
        }