Khalilmaniani.hashnode.dev·May 19, 2024Mapping an Entity to EntityDto and vice versa using AutoMapperIn modern application development, it's common to separate data transfer objects (DTOs) from the actual entities that represent data in the database. This separation allows for a cleaner architecture, where DTOs handle data transfer between the clien...aspcore
Hemant Singhmemorycrypt.hashnode.dev·Dec 5, 2023Using Automapper for mapping entities in C#Mapping entities in C# is a common task when dealing with object-relational mapping (ORM) frameworks, such as Entity Framework. This process involves transforming data between different types, often between domain models and data transfer objects (DT...1 like·407 readsAutoMapper