3

我正在使用 Umbraco 4.7.1,我正在尝试将内容节点映射到一些自动生成的强类型对象。我曾尝试同时使用 valueinjecter 和 automapper,但 OOTB 它们都没有映射我的属性。我猜这是因为 Umbraco 节点(cms 文档)上的所有属性都是这样检索的:

node.GetProperty("propertyName").Value;

我的强类型对象的格式是 MyObject.PropertyName。那么如何将使用方法和以小写字符开头的字符串检索的节点上的属性映射到 MyObject 上属性以大写字符开头的属性?

更新 我设法创建了以下代码,通过在 Umbraco 源代码中挖掘以获取有关如何将字符串属性转换为强类型属性的一些灵感,按预期映射 umbraco 节点:

    public class UmbracoInjection : SmartConventionInjection
{
    protected override bool Match(SmartConventionInfo c)
    {
        return c.SourceProp.Name == c.TargetProp.Name;
    }

    protected override void Inject(object source, object target)
    {
        if (source != null && target != null)
        {

            Node node = source as Node;

            var props = target.GetProps();
            var properties = node.Properties;

            for (int i = 0; i < props.Count; i++)
            {
                var targetProperty = props[i];
                var sourceProperty = properties[targetProperty.Name];
                if (sourceProperty != null && !string.IsNullOrWhiteSpace(sourceProperty.Value))
                {
                    var value = sourceProperty.Value;
                    var type = targetProperty.PropertyType;
                    if (targetProperty.PropertyType.IsValueType && targetProperty.PropertyType.GetGenericArguments().Length > 0 && typeof(Nullable<>).IsAssignableFrom(targetProperty.PropertyType.GetGenericTypeDefinition()))
                    {
                        type = type.GetGenericArguments()[0];
                    }
                    targetProperty.SetValue(target, Convert.ChangeType(value, type));
                }
            }
        }
    }
}

如您所见,我使用 SmartConventionInjection 来加快速度。映射 16000 个对象仍然需要大约 20 秒。这可以更快地完成吗?

谢谢

托马斯

4

1 回答 1

3

使用 ValueInjecter 你会做这样的事情:

public class Um : ValueInjection
{
    protected override void Inject(object source, object target)
    {
        var node = target as Node;
        var props = source.GetProps();
        for (int i = 0; i < props.Count; i++)
        {
            var prop = props[i];
            target.GetProperty(prop.Name).Value;

        }
    }
}
于 2012-04-18T07:42:39.140 回答