Home  >  Article  >  Backend Development  >  Introducing the use of AutoMapper in OOM

Introducing the use of AutoMapper in OOM

Y2J
Y2JOriginal
2017-05-06 11:37:571505browse

This article mainly introduces the relevant knowledge of the OOM framework AutoMapper. The five examples in this article can help you solve common basic problems. It has a certain reference value. Let’s take a look at it with the editor.

Written in front

OOM As the name suggests, Object-Object-Mapping entities convert each other, AutoMapper It is also a cliché. Its meaning is to help you convert simple and troublesome relationships between entities without manual work, such as the conversion between ViewModel and entity, and the conversion between SearchModel and Entity. The significance of my sharing is that most of the sharing on the Internet is It was a few years ago, and many methods have been abandoned. When you get it, the compiler will tell you that the method is outdated, abandoned, and not recommended for use, such as Mapper.CreateMap and other methods. Of course, most experienced drivers go directly to github to read the documentation. Or you can just google it to find out, but the Chinese information doesn’t have any explanation about the method after it was abandoned. The five examples in this article can help you solve common basic problems.

Preparation

First we prepare some ViewModel and TModel. ViewModel is the entity you interact with the user. TModel is the entity you use to deal with the database.

The entities are displayed as follows:

TModel has the following three simple entities. They have independent entities and one-to-many entities.

public class TAddress
{
 public string Country { get; set; }
 public string City { get; set; }
 public string Street { get; set; }
 public string PostCode { get; set; }
 public string CreateTime { get; set; }
 public int CreateUserId { get; set; }
}
public class TAuthor
 {
  public string Name { get; set; }
  public string Description { get; set; }
  public List ContactInfo { get; set; }
 }
 public class TContactInfo
 {
 public int Id { get; set; }
 public string Email { get; set; }
 public string Blog { get; set; }
 public string Twitter { get; set; }
 }

ViewModel is as follows:

public class VM_Address
 {
 public string Country { get; set; }
 public string City { get; set; }
 public string City2 { get; set; }
 }
 public class VM_Author
 {
 public string Name { get; set; }
 public string Description { get; set; }
 public List ContactInfo { get; set; }
 }
 public class VM_ContactInfo
 {
 public int Id { get; set; }
 public string Email { get; set; }
 public string Blog { get; set; }
 public string Twitter { get; set; }
 }

Single entity conversion

When converting a single entity, in AttributesField name In the case of an exact match, you only need to specify the conversion rules between the two entities, specifying the source entity and destination entity. Then you should refer to the following example:

VM_Address dto = new VM_Address
  {
  Country = "China",
  City = "Beijing"
  };
  Mapper.Initialize(m => m.CreateMap());
  TAddress address = Mapper.Map(dto);

Please note that in AutoMapper5.x, Initialize is preferred to initialize your rules.

After you specify the conversion rules, please use the Map method to convert and output your target entities. The first parameter represents SourceModel, and the second parameter is DestinationModel.

Conversion of attributes with different names for a single entity

When you need to convert fields with different names When mapping, please pay attention to using the ForMember method. The first parameter requires you to specify the target field that requires special configuration. The second parameter requires you to specify the operation of the field attributes. I choose The MapFrom method it provides is to tell AutoMapper that I need to specify the City source of the target entity as the City2 attribute value of the source entity.

VM_Address dto = new VM_Address
  {
  Country = "China",
  City2 = "Beijing"
  };
  Mapper.Initialize(m => m.CreateMap().ForMember(x => x.City, opt => opt.MapFrom(o => o.City2)));
  TAddress address = Mapper.Map(dto);

Set conversion

When converting between collections, you do not need to configure the matching between the target List and the source Listobject, but only You need to configure the mapping matching relationship of your generic objects.

  TAddress address = new TAddress { Country = "China", City = "Beijing" };
  TAddress address2 = new TAddress() { Country = "USA", City = "New York" };
  List addressList = new List() { address2, address };
  Mapper.Initialize(m => m.CreateMap());//这里仅需配置实体间的转换,而不是实体集合的转换
  List res = Mapper.Map, List>(addressList);

Entity contains different types of attribute conversion (ignore attributes)

When the entity contains different types of attributes, for example, TModel1 contains a Listbc26e2d35896972142bded266172216c, and Your ViewModel1 contains a Listc3232db81f7d071f9370eef3d6b791a7. At this time, you can choose to ignore this attribute

 var contacts = new List() { new TContactInfo() 
          { Blog = "myblog", Email = "ws@qq.com" }, new TContactInfo() { Blog = "myblog", Email = "ll@qq.com" } };
  TAuthor author = new TAuthor() { Description = "描述", Name = "吴双", ContactInfo = contacts };
  Mapper.Initialize(m => { m.CreateMap().ForMember(x => x.ContactInfo, opt => opt.Ignore()); });
       VM_Author dto = Mapper.Map(author);
//这里的Ignore代表配置ContractInfo该属性的操作 为 忽略Ignore,映射时将忽略该属性 由于List()和List() 是不同类型,所以需要配置忽略或者是特殊映射,特殊映射例子看下方

The entity contains different types of attribute conversion (specified attribute Mapfrom)

Of course, when you need this attribute, you don't need to ignore it, but use MapFrom to specify it specifically. And when the types are different, you need to specify the mapping relationship between your two types. As in the examples below

m.CreateMap775d38cc2051b2bc0f39739d39ab1b82(); and
m.CreateMap453162b02c806123692898c984a1fdf8().ForMember(x => x.ContactInfo, opt => ; opt.MapFrom(o => o.ContactInfo));

var contacts = new List()
  {
  new TContactInfo() { Blog = "myblog", Email = "ws@qq.com" },
  new TContactInfo() { Blog = "myblog", Email = "ll@qq.com" }
  };
  TAuthor author = new TAuthor() { Description = "描述", Name = "吴双", ContactInfo = contacts };
  Mapper.Initialize(m =>
  {
  m.CreateMap();//注意 内部不同类型实体转换时必要的
  m.CreateMap().ForMember(x => x.ContactInfo, opt => opt.MapFrom(o => o.ContactInfo));//注意 制定MapFrom是必要的
  });
  VM_Author dto = Mapper.Map(author);

【Related recommendations】

1. ASP Free Video Tutorial

2. ASP tutorial

3. Li Yanhui ASP basic video tutorial

The above is the detailed content of Introducing the use of AutoMapper in OOM. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn