AutoMapper中Mapper的CreateMap方法弃用解决方法

AutoMaper的安装:

资源管理器中右键项目名称Nuget程序包,在搜索框中输入AutoMaper,点击第一个选项安装程序包;

但由于AutoMaper。Mapper.CreateMap()方法已弃用,所以在最新版本的AutoMaper中就不可以使用该方法,解决方法如下:

将以前使用的Mapper.CreateMap()方法改为Mapper.Initialize(x=>x.CreateMap()());即可。

结果图如下:

AutoMapper中Mapper的CreateMap方法弃用解决方法_第1张图片

Tes类:

AutoMapper中Mapper的CreateMap方法弃用解决方法_第2张图片

TestViewModel类:

AutoMapper中Mapper的CreateMap方法弃用解决方法_第3张图片

视图View:

AutoMapper中Mapper的CreateMap方法弃用解决方法_第4张图片

每次发的博客都感觉有些零碎,但知识是通过日积月累,累计起来的,希望对您有用。

你可能感兴趣的:(.Net,ASP,.Net,MVC)