使用AutoMapper

时间:2016-11-03 03:46:12

标签: c# automapper

我目前手动执行我的DTO =>我的MVC项目中的ViewModel转换。所以,代码看起来像这样:

var model = new LandingModel {
                FamilyName = token.FamilyName,
                LoggedInUser = token.DisplayName,
                TimeZoneName = token.TimeZoneName,
                CurrentDateTime = Common.SessionManager.GetSessionDate().ToString(SharedLib.Constants.FMT_DATE_AND_TIME_LONG)
            };

LandingModel看起来像这样:

public class LandingModel
{
    public string FamilyName { get; set; }
    public string LoggedInUser { get; set; }
    public string TimeZoneName { get; set; }
    public string CurrentDateTime { get; set; }
}

如何处理CurrentDateTime?它是模型中的一个字符串,通过从会话变量获取用户时区日期时间并应用字符串格式来处理。

如何使用Mapper.Map<SessionToken>(model));

执行此操作

注意,.GetSessionDate()只需要UTC日期,并添加用户时区的偏移量,以根据它们提供当前日期。

1 个答案:

答案 0 :(得分:6)

您可以在MapperConfiguration中处理此方案,如下所示:

var config = new MapperConfiguration(
   cfg =>
   {
      cfg.CreateMap<SessionToken, LandingModel>()
         .AfterMap((src, dest) => dest.CurrentDateTime = Common.SessionManager.GetSessionDate().ToString(SharedLib.Constants.FMT_DATE_AND_TIME_LONG));
   });

参考:

AutoMapper - Before and after map actions