gpt4 book ai didi

c# - AutoMapper ProjectTo<>() 找不到 map

转载 作者:太空狗 更新时间:2023-10-29 22:11:51 25 4
gpt4 key购买 nike

我有一个 ASP.NET 5(在 4.6.2 上运行,而不是 Core)应用程序。我想使用 AutoMapper 的 ProjectTo<>() 方法将结果从数据库投影到我的 View 模型。

我已经尝试了很多测试,但似乎只有在使用 ProjectTo<>() 时才能找到 map 。在具有相同模型和 View 模型的不同位置上使用 mapper.Map<>() 非常有效。

我猜 AutoMapper 如何与我的 DI (Autofac) 一起工作有问题,但我不知道是什么。

无论如何,代码:

Startup.Cs

 public IServiceProvider ConfigureServices(IServiceCollection services)
{
(...)

// Autofac DI
AutofacContainer = AutofacLoader.Configure(services).Build();

return AutofacContainer.Resolve<IServiceProvider>();
}

AutofacLoader.cs

public static ContainerBuilder Configure(IServiceCollection services)
{
var builder = new ContainerBuilder();

(...)


// AutoMapper
builder.RegisterModule<AutoMapperModule>();

if (services != null)
{
builder.Populate(services);

}
return builder;
}

AutoMapperModule.cs

public class AutoMapperModule : Module
{
protected override void Load(ContainerBuilder builder)
{
var mapping = new MapperConfiguration(cfg =>
{
cfg.AddProfile(new Core.Mappings.AutoMapperProfileConfiguration());
cfg.AddProfile(new Dieet.Core.Mappings.AutoMapperProfileConfiguration());
});
builder.RegisterInstance(mapping.CreateMapper()).As<IMapper>().AutoActivate();
}
}

测试失败并显示“从 Patient 到 PatientViewModel 的映射缺失。使用 Mapper.CreateMap' 创建。

   [Fact]
public async void InfohosServiceReturnsPatientViewModels()
{
var db = _container.Resolve<IInfohosDb>();

var search = new PaginatedSearchBase();
search.OrderBy = "Naam";

var mapper = _container.Resolve<IMapper>();

var result = await search.PagedResultAsAsync<Patient,PatientViewModel >(null,db.Patienten,mapper);
}

分页搜索库

public class PaginatedSearchBase
{
public string OrderBy { get; set; }
public bool OrderDescending { get; set; }
public int Page { get; set; } = 1;
public int PageSize { get; set; } = 10;
}

最后是调用 ProjectTo 的扩展

public static class PagedResultExtensions
{
public static async Task<PagedResult<T>> PagedResultAsync<T>(this PaginatedSearchBase vm, ICollection<Expression<Func<T, bool>>> whereCollection, IEnumerable<T> context) where T : class
{
int totalCount;
var query = PrepareQuery(vm, whereCollection, context, out totalCount);

return new PagedResult<T>
{
Results = await query.ToListAsync(),
Page = vm.Page,
PageSize = vm.PageSize,
Total = totalCount
};
}
public static async Task<PagedResult<TAs>> PagedResultAsAsync<T, TAs>(this PaginatedSearchBase vm, ICollection<Expression<Func<T, bool>>> whereCollection, IEnumerable<T> context, IMapper mapper) where T : class
{
int totalCount;
var query = PrepareQuery(vm, whereCollection, context, out totalCount);

return new PagedResult<TAs>
{
----------> Results = await query.ProjectTo<TAs>(mapper).ToListAsync(),
Page = vm.Page,
PageSize = vm.PageSize,
Total = totalCount
};
}

private static IQueryable<T> PrepareQuery<T>(PaginatedSearchBase vm, ICollection<Expression<Func<T, bool>>> whereCollection, IEnumerable<T> context,
out int totalCount) where T : class
{
var query = context.AsQueryable();
if (whereCollection != null)
{
foreach (var w in whereCollection)
{
if (w != null)
{
query = query.Where(w);
}
}
}
// Order by
query = query.OrderBy($"{vm.OrderBy} {(vm.OrderDescending ? "DESC" : "ASC")}");

// Total rows
totalCount = query.Count();

// Paging
query = query.Skip((vm.Page - 1)*vm.PageSize).Take(vm.PageSize);
return query;
}
}

有关信息,我使用的版本:

  • “Autofac”:“4.0.0-rc1-177”
  • "Autofac.Extensions.DependencyInjection": "4.0.0-rc1-177"
  • “AutoMapper”:“4.2.1”

编辑:

我做的一个新测试来检查映射是否真的有效:

var mapper = _container.Resolve<IMapper>();
var p = new Patient();
p.Naam = "Test";
var vm = mapper.Map<PatientViewModel>(p);

vm.Naam.ShouldBeEquivalentTo("Test");

这个测试通过

编辑 2:

当我在 Select() 中使用 Map<> 时,它也有效,所以实际上是 ProjectTo<>() 失败了:

var results = await query.ToListAsync();
return new PagedResult<TAs>
{
Results = results.Select(mapper.Map<TAs>).ToList(),
Page = vm.Page,
PageSize = vm.PageSize,
Total = totalCount
};

这可行,但它需要包含映射器而不是注入(inject)映射器,并且它不使用 Automapper 具有的用于数据库访问的 ProjectTo...

最佳答案

我遇到了同样的问题,但设法让它工作了。这是由于 Automapper 最近采取的行动,不再让整个 API 使用静态方法。现在一切都是基于实例的,静态扩展方法不再知道映射配置,现在必须将它们传递到方法中。我最终将 MapperConfiguration 的一个实例注册为 IConfigurationProvider(我使用的是 Unity)

container.RegisterInstance(typeof (IConfigurationProvider), config);

这被注入(inject)到我的查询处理程序中:

[Dependency]
public IConfigurationProvider MapperConfigurationProvider { get; set; }

最后,MapperConfigurationProvider 被传递给对 ProjectTo 的调用:

.ProjectTo<Payment>(MapperConfigurationProvider);

希望这对您有所帮助。

关于c# - AutoMapper ProjectTo<>() 找不到 map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37318814/

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