Я пытаюсь настроить automapper.Collections для моего основного проекта aspnet, как мне получить DBContext для настройки:
cfg.SetGeneratePropertyMaps> ();
т.е. в:
public override void Initialize()
{
var thisAssembly = typeof(ApplicationModule).GetAssembly();
IocManager.RegisterAssemblyByConvention(thisAssembly);
Configuration.Modules.AbpAutoMapper().Configurators.Add(
// Scan the assembly for classes which inherit from AutoMapper.Profile
cfg => {
cfg.AddProfiles(thisAssembly);
cfg.AddCollectionMappers();
cfg.SetGeneratePropertyMaps<GenerateEntityFrameworkCorePrimaryKeyPropertyMaps<dbcontext>> ();
}
);
}