2

我所有的域模型都有 field public CurrencyId CurrencyId {get; set;}。我所有的视图模型都已归档public CurrencyVm Currency {get; set;}。Automapper 知道如何Map<CurrencyVm>(CurrencyId)。如何设置自动约定,所以我不必.ForMember(n => n.Currency, opt => opt.MapFrom(n => n.CurrencyId));

4

1 回答 1

2

ForAllMaps是答案,谢谢@LucianBargaoanu。这段代码有点工作,但并未在所有情况下都经过测试。另外我不知道如何检查所选属性之间是否存在映射。

        configuration.ForAllMaps((map, expression) =>
        {
            if (map.IsValid != null)
            {
                return; // type is already mapped (or not)
            }

            const string currencySuffix = "Id";
            var currencyPropertyNames = map.SourceType
                .GetProperties()
                .Where(n => n.PropertyType == typeof(CurrencyId) && n.Name.EndsWith(currencySuffix))
                .Select(n => n.Name.Substring(0, n.Name.Length - currencySuffix.Length))
                .ToArray();
            expression.ForAllOtherMembers(n =>
            {
                if (currencyPropertyNames.Contains(n.DestinationMember.Name, StringComparer.OrdinalIgnoreCase))
                {
                    n.MapFrom(n.DestinationMember.Name + currencySuffix);
                }
            });
        });
于 2018-06-04T08:24:14.850 回答