当前位置: 首页 > article >正文

C#创建AutoMapper的映射配置

这里写目录标题

  • C#
    • 创建AutoMapper的映射配置代码实现
      • 定义实体类(Entities)
      • 定义模型类(Model)
      • 配置及调用
  • C# ASP.NET Core微服务
    • 创建AutoMapper的映射配置代码实现
      • 定义实体类(Entities)
      • 定义模型类(Model)
      • 创建 AutoMapper 的映射配置
      • 添加到微服务
      • 调用

C#

创建AutoMapper的映射配置代码实现

定义实体类(Entities)

public class Entity
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string FieldName { get; set; }
    // 其他实体类字段
}

定义模型类(Model)

public class Model
{
    public int Identifier { get; set; }
    public string Title { get; set; }
    public string FieldName { get; set; }
    // 其他模型类字段
}

配置及调用

// 创建 AutoMapper 的映射配置
var config = new MapperConfiguration(cfg =>
{
    cfg.CreateMap<Entity, Model>()
        .ForMember(dest => dest.Identifier, opt => opt.MapFrom(src => src.Id))
        .ForMember(dest => dest.Title, opt => opt.MapFrom(src => src.Name))
        // 其他字段的映射
        .ForMember(_ => _.FieldName, opt => opt.Ignore());  // 可用Ignore配置字段不进行映射
});

// 实例化 AutoMapper 映射器
var mapper = config.CreateMapper();

// 创建实体对象
var entity = new Entity
{
    Id = 1,
    Name = "Example"
    // 其他实体类字段赋值
};

// 将实体对象转换为模型对象
var model = mapper.Map<Model>(entity);

C# ASP.NET Core微服务

创建AutoMapper的映射配置代码实现

定义实体类(Entities)

public class Entity
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string FieldName { get; set; }
    // 其他实体类字段
}

定义模型类(Model)

public class Model
{
    public int Identifier { get; set; }
    public string Title { get; set; }
    public string FieldName { get; set; }
    // 其他模型类字段
}

创建 AutoMapper 的映射配置

public class MappingProfile : Profile
    {
        public MappingProfile()
        {
        	CreateMap<Entity, Model>()
        		.ForMember(dest => dest.Identifier, opt => opt.MapFrom(src => src.Id))
        		.ForMember(dest => dest.Title, opt => opt.MapFrom(src => src.Name))
        		// 其他字段的映射
        		.ForMember(_ => _.FieldName, opt => opt.Ignore());  // 可用Ignore配置字段不进行映射
        }
     }

添加到微服务

services.AddAutoMapper(typeof(MappingProfile))

调用

mapper.Map<Model>(entity);

http://www.kler.cn/a/133370.html

相关文章:

  • deepseek R1的确不错,特别是深度思考模式
  • 微服务入门(go)
  • 【Rust自学】14.6. 安装二进制crate
  • c++:vector
  • 新年快乐!给大家带来了一份 python 烟花代码!
  • Shodan Dorks安装指南,通过Shodan搜索漏洞
  • debian10 开启rdp安装firefox,firefox 中文乱码
  • 设计模式(一)-简要概述(2)
  • 时序预测 | Python实现ConvLSTM卷积长短期记忆神经网络股票价格预测(Conv1D-LSTM)
  • 01Urllib
  • 【Java】ArrayList和LinkedList使用不当,性能差距会如此之大!
  • Web(5)Burpsuite之文件上传漏洞
  • VMware vSphere 中的 DRS(分布式资源调度)、HA(高可用性)和Fault Tolerance(FT,容错)区别
  • CI/CD - jenkins
  • python项目源码基于django的宿舍管理系统dormitory+mysql数据库文件
  • CF1514 C. Product 1 Modulo N [妙妙题]
  • 小程序游戏、App游戏与H5游戏:三种不同的游戏开发与体验方式
  • Axure基础详解二十二:随机点名效果
  • 【PG】PostgreSQL高可用之自动故障转移-repmgrd
  • Rocket如何实现顺序消费
  • vscode 配置 lua
  • 【JVM】Java虚拟机
  • es的使用方法以及概念
  • levelDB之基础数据结构-Slice
  • 新材料工厂生产管理mes系统
  • Power BI Desktop数据可视化图表