40

我在 WCF 服务中使用 AutoMapper 来返回User对象。 User具有诸如AccountTeamswhich 本身具有子对象的属性。所有的类都有 AutoMapper 地图。

根据OperationContract调用的 WCF,我想返回不同数量的数据。我希望一个OperationContract返回User没有填充其AccountTeams属性(及其子级)的对象,另一个OperationContract返回填充User了整个属性链的对象。

有没有办法在相同的两个对象之间有两个不同的映射,或者我是否需要执行完整映射并null输出我不想从服务返回的属性?

4

3 回答 3

21

Kevin Kalitowski 对 wal 的回答提出了一个很好的观点:如果我们需要两种配置来处理需要不同的映射,那么我们是否不必复制所有其他常见的映射?

我想我已经找到了一种使用配置文件的方法:每个唯一映射都有一个配置文件,公共映射有第三个配置文件。然后创建两个配置,一个用于每个唯一配置文件,但也将通用配置文件添加到每个配置。

例如,在 AutoMapper 4.2 中:

要映射的类:用户和车辆:

public class User
{
    public string Name { get; set; }
    public int Age { get; set; }
}

public class Vehicle
{
    public int FleetNumber { get; set; }
    public string Registration { get; set; }
}

简介:

public class Profile1 : Profile
{
    protected override void Configure()
    {
        base.CreateMap<User, User>();
    }
}

public class Profile2 : Profile
{
    protected override void Configure()
    {
        base.CreateMap<User, User>().ForMember(dest => dest.Age, opt => opt.Ignore());
    }
}

public class CommonProfile : Profile
{
    protected override void Configure()
    {
        base.CreateMap<Vehicle, Vehicle>();
    }
}

然后创建配置并映射对象:

[TestMethod]
public void TestMethod()
{
    var user = new User() { Name = "John", Age = 42 };
    var vehicle = new Vehicle {FleetNumber = 36, Registration = "XYZ123"};

    var configuration1 = new MapperConfiguration(cfg =>
    {
        cfg.AddProfile<CommonProfile>();
        cfg.AddProfile<Profile1>();
    });

    var mapper1 = configuration1.CreateMapper();
    var mappedUser1 = mapper1.Map<User, User>(user);//maps both Name and Age
    var mappedVehicle1 = mapper1.Map<Vehicle, Vehicle>(vehicle);//Maps both FleetNumber 
                                                                //and Registration.

    var configuration2 = new MapperConfiguration(cfg =>
    {
        cfg.AddProfile<CommonProfile>();
        cfg.AddProfile<Profile2>();
    });

    var mapper2 = configuration2.CreateMapper();
    var mappedUser2 = mapper2.Map<User, User>(user);//maps only Name
    var mappedVehicle2 = mapper2.Map<Vehicle, Vehicle>(vehicle);//Same as mappedVehicle1.
}

我试过了,它有效。

于 2016-06-12T03:04:18.883 回答
15

我假设您正在从映射UserUser(如果不是,那么只需更改目标类型)

假设这个类用于以下示例:

public class User
{
    public string Name { get; set; }
    public int Age { get; set; }
}

然后,您可以使用 separateAutoMapper.Configuration定义 2 个映射:

[TestMethod]
public void TestMethod()
{
    var configuration1 = new Configuration(new TypeMapFactory(), MapperRegistry.AllMappers());
    var mapper1 = new MappingEngine(configuration1);
    configuration1.CreateMap<User, User>();

    var user = new User() { Name = "John", Age = 42 };
    var mappedUser1 = mapper1.Map<User, User>(user);//maps both Name and Age

    var configuration2 = new Configuration(new TypeMapFactory(), MapperRegistry.AllMappers());
    configuration2.CreateMap<User, User>().ForMember(dest => dest.Age, opt => opt.Ignore());
    var mapper2 = new MappingEngine(configuration2);

    var mappedUser2 = mapper2.Map<User, User>(user);
    Assert.AreEqual(0, mappedUser2.Age);//maps only Name
}

为避免将所有其他类型映射两次,您可以添加一个通用方法,该方法采用 aConfiguration映射可以到达的所有内容,并在调用时和User调用后调用它。configuration1configuration2CreateMap

更新

对于 Automapper 4.x,请使用以下内容:

var configuration1 = new MapperConfiguration(cfg =>
{
    cfg.CreateMap<User, User>();
});

var mapper1 = configuration1.CreateMapper();
var user = new User() { Name = "John", Age = 42 };
var mappedUser1 = mapper1.Map<User, User>(user);//maps both Name and Age

var configuration2 = new MapperConfiguration(cfg =>
{
    cfg.CreateMap<User, User>().ForMember(dest => dest.Age, opt => opt.Ignore());
});

var mapper2 = configuration2.CreateMapper();
var mappedUser2 = mapper2.Map<User, User>(user);   //maps only Name
于 2013-01-10T22:24:03.703 回答
2

我认为您可以使用此处描述的不同配置对象来解决此问题 ,您可以在此处找到一个示例

于 2013-01-10T20:08:15.680 回答