我有一些类似于下面的代码。基本上,它表示从 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 作为模板生成的代理。