gpt4 book ai didi

c# - 在自定义映射中调用 IMappingEngine.Map

转载 作者:行者123 更新时间:2023-11-30 12:14:31 28 4
gpt4 key购买 nike

使用 AutoMapper 时,当使用 ConvertUsing 为作为容器的类型定义自定义映射时,我经常需要在映射函数中调用 IMappingEngine.Map。这是必要的,因为它允许我重用子映射的定义。

CreateMap<Order, OrderModel>()
.ConvertUsing(o => new OrderModel(
o.Id,
o.ShippingAddress,
mapper.Map<IList<OrderItemModel>>(o.Items)
));

为此,我需要引用 IMappingEngine。配置映射引擎时,我没有可以在 ConvertUsing 参数中捕获的对它的引用。一个简单的解决方案是在某处对其进行静态引用,但我想避免它。

有没有办法在使用 ConvertUsing 的映射中获取对当前 IMappingEngine 的引用?

最佳答案

此答案基于您的 original revision其中包括额外的代码

如果您看一下 Jimmy Bogard 在 Automapper and IOC 上发表的文章他注意到以下几点:

The MappingEngine, unlike our Configuration object, does not need any special caching/lifetime behavior. The MappingEngine is very lightweight, as it’s really a bunch of methods doing interesting things with Configuration. MappingEngine can be singleton if we want, but there’s no need.

(在 github 上更新了最新版本 Automapper 的示例 IOC 代码)

只要您的 ConfigurationStore 是单例并且从您的 DI 容器请求 IConfigurationIConfigurationProvider 解析到这个单例实例,文章(和代码示例)提倡在注入(inject)时创建 MappingEngine 的新实例。

基于上述,除了不将您的 ConfigurationStore 注册为单例实例(我想,我不熟悉 ninject)并且不将此实例绑定(bind)到 IConfiguration 您在原始修订版中对 MappingProfile 的最终实现实际上是一个可以接受的解决方案。这可以不是相同的 MappingEngine 实例。

但是,根据您在问题中的示例用法,可能值得考虑文章中的场景 2。如果您不需要在整个应用程序中注入(inject)配置,而只需注入(inject) IMappingEngine,那么您可以依靠静态 Mapper 类来进行配置和生命周期管理。总而言之,您为采用此方法所做的更改是:

  1. 在构建容器时移除与 IConfigurationProvider 相关的连接(在 MappingModule 中)。

  2. 将您的 MappingProfile 切换为使用静态 Mapper

    CreateMap<Order, OrderModel>()
    .ConvertUsing(o => new OrderModel(
    o.Id,
    o.ShippingAddress,
    Mapper.Map<IList<OrderItemModel>>(o.Items) //use static Mapper class
    ));

    CreateMap<OrderItem, OrderItemModel>();
  3. Profile 添加到 Mapper(也许在 MappingModule 中?),并通过 进行任何其他配置>映射器:

    Mapper.AddProfile(new MappingProfile());
  4. 将 ninject 容器中的 IMappingEngine 绑定(bind)到 Mapper.Engine 属性。

关于c# - 在自定义映射中调用 IMappingEngine.Map,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9282819/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com