Getting Started with AutoMapper in ASP.NET Core

preview_player
Показать описание

In this video, we are going to learn how to use AutoMapper in an ASP.NET Core application.

FOLLOW US ON SOCIAL MEDIA!

VIDEO SUMMARY:
We are going to start by looking into what the AutoMapper is and what problem it solves. Then, we are going to explain how we can use AutoMapper in our application. After that, we’ll learn about the usage guidelines and best practices. We’ll also take a look at what’s happening behind the scenes and how to flatten complex object models.
Рекомендации по теме
Комментарии
Автор

Thank you all for watching and for your support.

CodeMaze
Автор

Great Video and Great Article. It was exactly what I needed to get up and running with AutoMapper.

ColeBerkley
Автор

New channel, subscribed after mail from you guys. Keep up the good work.👍

maheshkudikala
Автор

Nice video, very helpful. I do appreciate it! You got a new subscriber!

dcernach
Автор

Nice content. I'm also glad to see you on YouTube as well. I will learn much from your High-Quality educational content.

placideirandora
Автор

Thank you so much, very nice and helpful tutorial, Appreciate your effort.

shadialhaj
Автор

Excellent video. I found it on your website.

thesuperiorman
Автор

What about complex type properties? How will you work with those

rubeushagrid
Автор

Great article. Period!. Quick Question - Can we have multiple profiles, Like UserProfile, ProductProfile, BlogProfile, etc...?

ManavDIY
Автор

Hi, You explained well, yet I have a doubt.

In UserViewModel class, If I use the AddressCountry with different names like AddressCountry123, Address123Country, it doesn't work.

What's the meaning of the property? Why do I can't change its name? Did you name for any purposely? if yes, what are the concepts I need to still study to understand it?
could you explain it, please? I'll appreciate it if anybody else also helps me.
TA

thirumanitheivam
Автор

You explained nice, yet I have a doubt. for automapper

same length ViewModel properties mapping its working , different length need to add one more required is it works or not ?

like

public class AuditLog
{
public int AuditId { get; set; }

public string GroupId { get; set; }

public string NewValue { get; set; }

public string ClosingReason { get; set; }
}

public class AuditLogDTO
{

public int AuditId { get; set; }

public string GroupId { get; set; }

public string ClosingReason { get; set; }
}

here NewValue properties mapping time need to add value dynamically, not come in to frontend

romesupaila
Автор

Great video, very informative. Please write and explain at a lower speed. I tend to stop/start video all the time.

makotheone
Автор

Very unclear tutorial. Assumes a lot of prior knowledge.

bringerod