我有三个实体。
public class Book
{
public string Name {get;set;}
}
public class Author
{
public string AuthorName {get;set;}
}
public class BookDTO
{
public string Name {get;set;}
public string AuthorName {get;set;}
}
如何映射Book
和Author
到BookDTO
?以及如何映射BookDTO
到Book
和Author
?我在我的解决方案中使用了自动映射器。