Trying to add AutoMapper to Asp.net Core 2?

后端 未结 10 1877
我在风中等你
我在风中等你 2020-12-23 19:20

I worked on a asp.net core 1.1 project a while ago and use in projetc AutoMapper.

in asp.net core 1.1, I add services.AddAutoMapper() in startup file :<

10条回答
  •  北荒
    北荒 (楼主)
    2020-12-23 20:07

    Dec 6th 2019 Based upon initial attempt in a pluralsight course Building an API with ASP.NET Core by Shawn Wildermuth. As I got the error "...ambiguous 'ServiceCollectionExtensions.AddAutoMapper(IServiceCollection, params Assembly[])..."

    I started researching proper syntax to implement AddAutoMapper in Core 2.2. My NuGet reference is version 7.0.0 After the tutorial had me create the Profile class in my Data repository directory which additionally referenced my model nir weiner & dev-siberia's answers above led me to trying to reference the profile class in the Startup.ConfigureServices() by name:

    services.AddAutoMapper(typeof(CampProfile));
    

    the content of the profile class is just a (no pun intended) old school map of the data class and the model in its constructor

    this.CreateMap();  
    

    This addressed the poor lack of documentation for this current version.

    Respectfully,

    ChristianProgrammer

提交回复
热议问题