gpt4 book ai didi

c# - AutoMapper 3 中不一致的映射行为

转载 作者:太空宇宙 更新时间:2023-11-03 10:43:19 25 4
gpt4 key购买 nike

在 MVC 5 的某些时候,我遇到了 AutoMapper 3 将相关实体从 Entity Framework 映射到 View 模型的问题。我正在使用 EF 6.1.1 获取数据,并使用轻薄的存储库层来集中查询。该问题似乎只发生在根实体下的实体映射属性时,但该问题是间歇性的。我已经看到该行为在重建解决方案后再次开始工作,并且在重建解决方案后没有更改出现问题的代码的情况下行为中断。

我已经在调试器和 SQL 分析器中对此进行了测试,即使前端未显示数据,我也可以在 SQL 分析器中看到 Entity Framework 正在加载相关表。

问题映射示例

此代码在从存储库层查询数据后在 MVC Controller 中执行。然后 View 模型将传递给 View 进行渲染。

Mapper.CreateMap<Event, EventViewModel>()
.ForMember(e => e.EventTitleId, opt => opt.MapFrom(x => x.EventTitleType.EventTitleId));
EventViewModel model = Mapper.Map<Event, EventViewModel>(eventItem);

//Fix Up I had to implement to ensure the data gets into the property
model.EventTitleId = eventItem.EventTitleType.EventTitleId;

问题映射的另一个例子

相同的基本执行路径在不同的 Controller 操作下,同样的问题。

Mapper.CreateMap<Event, EventViewModel>()
.ForMember(l => l.EventTitle, opt => opt.MapFrom(x => x.EventTitleType.EventTitle.Title))
.ForMember(l => l.EventType, opt => opt.MapFrom(x => x.EventTitleType.LkEventType.Title))
.ForMember(l => l.LocationName, opt => opt.MapFrom(x => x.LkLocation.LocationName));
IEnumerable<EventViewModel> eventList = Mapper.Map<IEnumerable<Event>, IEnumerable<EventViewModel>>(events);

同样,有时这三个属性会获取数据,有时则不会。

数据模型

这就是数据模型的样子。

The part of the edmx file with the data model for this question

存储库

存储库层包装了 Entity Framework 调用,但它并没有抽象出 Entity Framework 实体及其存在的问题和好处。项目中的所有存储库都继承了 IRepository,我正在使用这一层来集中查询和业务逻辑。

using System.Collections.Generic;

namespace Tools.Repository
{
/// <summary>
/// Generic Repository Interface
/// </summary>
/// <typeparam name="TClass">Class that the Repository is implemented for.</typeparam>
public interface IRepository<TClass>
where TClass : class
{
void SaveChanges();
TClass Find(params object[] keyValues);
IEnumerable<TClass> GetAll();
TClass Add(TClass itemToAdd);
TClass Update(TClass itemToUpdate);
TClass Remove(TClass itemToDelete);
}
}

总结

我不认为这是 Entity Framework 延迟加载问题,在强制 EF 预先加载数据后,问题仍然存在。实体在映射之前在调试器中具有值,但只有有时该值才会映射到 View 模型。最令人沮丧的是,这个问题似乎不是由我对 View 模型所做的任何更改引起的。

什么会导致这种不一致的行为?我在 AutoMapper 3.2.1 和 3.1.1 上都遇到过这个问题。

最佳答案

问题是您在使用之前创建(配置)映射。现在,哪个映射首先创建并因此将占上风是一个巧合。

AutoMapper documentation说:

If you're using the static Mapper method, configuration should only happen once per AppDomain. That means the best place to put the configuration code is in application startup, such as the Global.asax file for ASP.NET applications.

这意味着您在 EventEventViewModel 之间只有一个映射,它可能应该是您现在拥有的两者的组合。

顺便说一句,您可以通过 DynamicMap 执行偶尔的映射.

关于c# - AutoMapper 3 中不一致的映射行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24460772/

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