无法获取ValueInjecter来映射COM对象

时间:2011-03-19 23:44:53

标签: c# automapper valueinjecter

请参阅以下代码。使用AutoMapper时测试通过,但使用ValueInjecter时失败:

using NetFwTypeLib;

[TestClass]
public class UnitTest1
{
    [TestMethod]
    public void TestMethod1()
    {
        INetFwPolicy2 policy = (INetFwPolicy2)Activator.CreateInstance(
                Type.GetTypeFromProgID("HNetCfg.FwPolicy2"));
        INetFwRules fwRules = policy.Rules;
        Rule rule = new Rule();

        foreach (INetFwRule fwRule in fwRules)
        {
            if (fwRule.Name == "HomeGroup Out")
            {
                //AutoMapper.Mapper.CreateMap<INetFwRule, Rule>();
                //AutoMapper.Mapper.Map(fwRule, rule);
                rule.InjectFrom(fwRule);
                break;
            }
        }
        Assert.IsTrue(rule.Name == "HomeGroup Out");
    }
}

public class Rule
{
    public string Name { get; set; }
}

有什么想法吗?感谢。

修改

根据Omu的回答,似乎问题与COM对象有关,而不仅仅是FirewallAPI.dll类。所以我将标题从“无法将ValueInjecter映射到FirewallAPI.dll类”更改为“无法获取ValueInjecter来映射COM对象”。

1 个答案:

答案 0 :(得分:0)

它不起作用,因为:

fwRule.GetType().GetProperties().Count()// is 0 

或使用PropertyDescriptor做同样的操作也返回零,就像对象没有属性一样

解决方案是编写一个注入,它将获取从哪里获取属性的类型:

public class Same<T> : ValueInjection
{
   protected override void Inject(object source, object target)
   {
       var props = typeof (T).GetInfos().ToArray();
       var tp = target.GetInfos().ToArray();
       for (var i = 0; i < props.Count(); i++)
       {
          var prop = props[i];
          for (var j = 0; j < tp.Count(); j++)
          {
            if(prop.Name == tp[j].Name && prop.PropertyType == tp[j].PropertyType)
            tp[j].SetValue(target,prop.GetValue(source, null),null);
          }
        }
      }
  }

和用法:

rule.InjectFrom<Same<INetFwRule>>(fwRule);

这与默认的InjectFrom()相同,但它从提供的Type中读取目标属性