gpt4 book ai didi

c# - 查找并验证所有自动映射器映射

转载 作者:太空狗 更新时间:2023-10-30 01:34:29 25 4
gpt4 key购买 nike

我希望能够为映射为源(或目标)的每种类型遍历程序集,并验证映射配置是否有效。这是一个相当大的项目,它广泛使用 AutoMapper,我希望这个单元测试在开发人员引入无效映射关系时中断。查看 GetAllMappedTypes、GetPropertyMaps 的集合,但我似乎无法找到检查有效配置的方法。我们使用的是 AutoMapper v4。

最佳答案

这个的自动映射器代码是:

<Perform mapping configuration work>

Mapper.AssertConfigurationIsValid()

如果您使用的是 nunit,您可以:

    [TestFixture]
public class when_validating_mapping_config
{
[Test]
public void then_should_assert_mapping_configuration_is_valid()
{
// Arrange
MappingConfig.InitializeMappings(); // this is just however you initialize your mappings.

// Act

// Assert
Mapper.AssertConfigurationIsValid();
}
}

mappingconfig 就是我初始化映射的方式。我在 MVC 中使用 automapper,所以我所有的静态配置都发生在 Global.asax.cs 中。

public static class MappingConfig
{
public static void InitializeMappings()
{
Mapper.Initialize(configuration => Configure(configuration));
}

public static void Configure(IConfiguration configuration)
{

configuration.CreateMap<Model, ViewModel>()
configuration.Seal();
}
}

关于c# - 查找并验证所有自动映射器映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30516055/

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