21

我有一些类似于下面的代码。基本上,它表示从 Web 服务获取数据并将其转换为客户端对象。

void Main()
{
    Mapper.CreateMap<SomethingFromWebService, Something>();    
    Mapper.CreateMap<HasSomethingFromWebService, HasSomething>(); 
    // Service side
    var hasSomethingFromWeb = new HasSomethingFromWebService();
    hasSomethingFromWeb.Something = new SomethingFromWebService
            { Name = "Whilly B. Goode" };
    // Client Side                
    HasSomething hasSomething=Mapper.Map<HasSomething>(hasSomethingFromWeb);  
}    
// Client side objects
public interface ISomething
{
    string Name {get; set;}
}    
public class Something : ISomething
{
    public string Name {get; set;}
}    
public class HasSomething
{
    public ISomething Something {get; set;}
}    
// Server side objects
public class SomethingFromWebService
{
    public string Name {get; set;}
}    
public class HasSomethingFromWebService
{
    public SomethingFromWebService Something {get; set;}
}

我遇到的问题是我想在我的类中使用接口(在这种情况下是 HasSomething.ISomething),但我需要将 AutoMapper 映射到具体类型。(如果我不映射到具体类型,那么 AutoMapper 将为我创建代理。这会导致我的应用程序出现其他问题。)

上面的代码给了我这个错误:

缺少类型映射配置或不支持的映射。

映射类型:SomethingFromWebService -> ISomething
UserQuery+SomethingFromWebService -> UserQuery+ISomething

所以我的问题是,我怎样才能映射到具体类型并在我的类中仍然使用接口?

注意:我尝试添加此映射:

Mapper.CreateMap<SomethingFromWebService, ISomething>();

但是返回的对象不是类型Something,它返回使用 ISomething 作为模板生成的代理。

4

1 回答 1

39

所以我想出了一些似乎可行的方法。

如果我添加这两个映射:

Mapper.CreateMap<SomethingFromWebService, Something>();
Mapper.CreateMap<SomethingFromWebService, ISomething>().As<Something>(); 

然后它按我的意愿工作。

我无法找到有关“As”方法的任何文档(尝试使用谷歌搜索!:),但它似乎是映射重定向。

例如:对于这个 Mapping( ISomething) 将它解析AsSomething.

于 2012-10-25T19:36:02.677 回答