ASP .NET Core 使用Mapster 进行DTO映射
ASP .NET Core 使用Mapster 进行DTO映射
网址:https://www.cnblogs.com/RainFate/p/17214316.html
安装Mapster
Install-Package Mapster
基本使用
新建以下实体类
public class Person
{
public string? Title { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
public DateTime? DateOfBirth { get; set; }
}
public class PersonDto
{
public string? Title { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
}
public class PersonShortInfoDto
{
public string? Title { get; set; }
public string? FullName { get; set; }
public int? Age { get; set