.NET CORE中使用AutoMapper进行对象映射的方法
简介
automapper uses a fluent configuration api to define an object-object mapping strategy. automapper uses a convention-based matching algorithm to match up source to destination values. automapper is geared towards model projection scenarios to flatten complex object models to dtos and other simple objects, whose design is better suited for serialization, communication, messaging, or simply an anti-corruption layer between the domain and application layer.
官网:http://automapper.org/
文档:https://automapper.readthedocs.io/en/latest/index.html
github:https://github.com/automapper/automapper/blob/master/docs/index.rst
平台支持:
- .net 4.6.1+
- .net standard 2.0+ https://docs.microsoft.com/en-us/dotnet/standard/net-standard
使用
nuget安装
automapper automapper.extensions.microsoft.dependencyinjection //依赖注入automapper,需要下载该包。
在startup中添加automapper
public void configureservices(iservicecollection services) { services.addmvc(); //添加对automapper的支持 services.addautomapper(); }
创建automapper映射规则
public class automapperconfigs:profile { //添加你的实体映射关系. public automapperconfigs() { createmap<dbpoundsheet, poundsheetviewmodel>(); createmap<poundsheetviewmodel, dbpoundsheet>(); } }
在构造函数中注入你的imapper
imapper _mapper; public poundlistcontroller(imapper mapper) { _mapper = mapper; }
单个对象转换
//typeof(model)="poundsheetviewmodel" dbpoundsheet dbpoundsheet = _mapper.map<dbpoundsheet>(model);
集合对象转换
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。
推荐阅读
-
.NET CORE中使用AutoMapper进行对象映射的方法
-
.NET CORE中使用AutoMapper进行对象映射的方法
-
在 ASP.NET Core 项目中使用 AutoMapper 进行实体映射
-
ASP.NET 中使用 Routing 进行 URL 优化,规则中的 .html 不起作用的解决方法
-
asp.net core 3.0中使用swagger的方法与问题
-
.NET Core中依赖注入AutoMapper的方法示例
-
.NET Core 中对象池 Object Pool的使用
-
.net core中Quartz的使用方法
-
ASP.NET Core Web 应用程序系列(五)- 在ASP.NET Core中使用AutoMapper进行实体映射
-
在.NET Core 中使用 FluentValidation 进行规则验证的方法