gpt4 book ai didi

c# - 通过 NHibernate 和 AutoMapper 将 DTO 的实体 ID 转换为域的实体

转载 作者:行者123 更新时间:2023-11-30 15:33:32 43 4
gpt4 key购买 nike

我一直在阅读有关使用 NHibernate 和 AutoMapper 将 DTO 的实体 ID 转换为域的实体的 StackOverflow 帖子。肯定有很多关于它的信息,但每个人似乎都有不同的建议,其中许多建议完全使用不同的工具 ( ValueInjecter )。此外,我发现的很多信息都是几年前的。因此,我再次解决这个问题,希望能为我解决问题。

我有以下 DTO 类:

public class PlaylistDto
{
public Guid Id { get; set;
public Guid StreamId { get; set; }
public List<PlaylistItemDto> Items { get; set; }
}

和相应的域:

public class Playlist
{
public Guid Id { get; set;
public Stream Stream { get; set; }
// Use interfaces so NHibernate can inject with its own collection implementation.
public IList<PlaylistItem> Items { get; set; }
}

首先,我声明我打算将这两个实体相互映射:

Mapper.CreateMap<Playlist, PlaylistDto>().ReverseMap();
Mapper.CreateMap<PlaylistItem, PlaylistItemDto>().ReverseMap();
Mapper.CreateMap<Stream, StreamDto>().ReverseMap();

ReverseMap 让我可以轻松声明双向映射。

此时,我可以毫不费力地将 Playlist 成功转换为 PlaylistDto:

//  Singular:
PlaylistDto playlistDto = Mapper.Map<Playlist, PlaylistDto>(playlist);

// Collection:
List<PlaylistDto> playlistDtos = Mapper.Map<List<Playlist>, List<PlaylistDto>>(playlists);

这很好用。不需要额外的代码。但是,当我尝试映射另一个方向时出现问题。

playlistDto 仅存储对其 Stream 的 ID 引用。如果我将 DTO 转换为域,如下所示:

Playlist playlist = Mapper.Map<PlaylistDto, Playlist>(playlistDto);

那么无论 playlistDto 的 StreamID 是什么,播放列表的 Stream 总是 null。

我想添加一个中间步骤,允许使用 Dto 的 entityId 通过 NHibernate 获取域的实体。

我没有使用 AutoMapper,我会通过以下方式实现:

playlist.Stream = StreamDao.Get(playlistDto.StreamId);

话虽如此,我有以下问题:

  • 使用 AutoMapper 实现这一目标的公认最简单方法是什么?
  • ValueInjecter 真的是我应该考虑的选择吗?我是否正在走上强制 AutoMapper 做会导致头痛的事情的道路?
  • 如果 ValueInjecter 是首选...它是否仍在维护?该项目看起来非常过时。另外,我看到有人提到 ValueInjecter 不支持集合。如果是这种情况,这将是一个巨大的关闭。

我看到的一些示例可能会解决我的问题:

Using AutoMapper to unflatten a DTO :

Mapper.CreateMap<Person, Domain.Person>()
.ForMember(dest => dest.Address, opt => opt.ResolveUsing( src => { return new Address() {Address1 = src.Address, City = src.City, State = src.State }; }))

AutoMapper map IdPost to Post :

public class Id2EntityConverter<TEntity> : ITypeConverter<int, TEntity> where TEntity : EntityBase
{
public Id2EntityConverter()
{
Repository = ObjectFactory.GetInstance<Repository<TEntity>>();
}

private IRepository<TEntity> Repository { get; set; }

public TEntity ConvertToEntity(int id)
{
var toReturn = Repository.Get(id);
return toReturn;
}

#region Implementation of ITypeConverter<int,TEntity>

public TEntity Convert(ResolutionContext context)
{
return ConvertToEntity((int)context.SourceValue);
}

#endregion
}

(there's more to this, but this is the gist of it)

感谢建议。谢谢!

最佳答案

Id2Entity 转换器是我们在一个非常大的项目中广泛使用的,它工作得很好。这里的技巧是您扫描所有实体并设置从 int 到您的类型的映射。如果您需要完整代码,请告诉我。

这是创建映射的类。

public class AutoMapperGlobalConfiguration : IGlobalConfiguration
{
private readonly IConfiguration _configuration;

public AutoMapperGlobalConfiguration(IConfiguration configuration)
{
_configuration = configuration;
}

private void RegisterAssembly(Assembly assembly)
{
//add all defined profiles
var query = assembly.GetExportedTypes()
.Where(x => x.CanBeCastTo(typeof(Profile)));

foreach (Type type in query)
{
var profile = ObjectFactory.GetInstance(type).As<Profile>();
_configuration.AddProfile(profile);


Mapper.AddProfile(profile);

}
}

public void Configure()
{
_configuration.RecognizePostfixes("Id");

var assemblies = AppDomain.CurrentDomain.GetAssemblies().Where(a => a.FullName.StartsWith("DM."));

//create maps for all Id2Entity converters
MapAllEntities(_configuration);

assemblies.Each(RegisterAssembly);
}

private static void MapAllEntities(IProfileExpression configuration)
{
//get all types from the domain assembly and create maps that
//convert int -> instance of the type using Id2EntityConverter
var openType = typeof(Id2EntityConverter<>);
var idType = typeof(int);

var persistentEntties = typeof(Domain.Entities).Assembly.GetTypes()
.Where(t => typeof(EntityBase).IsAssignableFrom(t))
.Select(t => new
{
EntityType = t,
ConverterType = openType.MakeGenericType(t)
});
foreach (var e in persistentEntties)
{
var map = configuration.CreateMap(idType, e.EntityType);
map.ConvertUsing(e.ConverterType);
}
}
}

关于c# - 通过 NHibernate 和 AutoMapper 将 DTO 的实体 ID 转换为域的实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17453722/

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