AutoMapper.Collection.EFCore-配置期间引发的错误

时间:2018-11-21 18:24:48

标签: automapper automapper-collections-ef-core

AutoMapper.Collection.EFCore今天刚刚在Nuget上发布,我现在正在尝试使用。

我已经根据Docs:

进行了设置

在startup.cs中的ConfigureServices方法中:

Mapper.Initialize(cfg =>
{
    cfg.AddCollectionMappers();
    cfg.SetGeneratePropertyMaps<GenerateEntityFrameworkCorePrimaryKeyPropertyMaps<ApplicationDbContext>>();
});

抛出此异常:

InvalidOperationException: Use AddEntityFrameworkCoreKeys instead of using SetGeneratePropertyMaps.

但是,我在cfg上找不到任何这样的方法

1 个答案:

答案 0 :(得分:1)

重命名为UseEntityFrameworkCoreModel。您应该报告它,以便他们更改消息。