ASP.NET Core Web API .NET 8 2024 - 5. DTOs

preview_player
Показать описание
ASP.NET Core Web API .NET 8 2024 - 5. DTOs

Рекомендации по теме
Комментарии
Автор

Thank you, Mr. Smith, your teachings are eloquent and expressive

iseblerobert
Автор

I think it would be better to place .Select() mapping method before the .ToList(), When we call .ToList() first, data of all the columns are retrieved from the database, which is kind of redundant because some of them are eventually going to be ignored in the DTO mapping method, if I apply .Select() mapping first, it first modifies the information in the IQueryable object it self and then .ToList() executes query on those columns only which are required in the mapping defined in the DTO Mapper method

mischief
Автор

I really like the way you explain in detail and in full😁😁😁As a junior, I didn't know many of the things you explained and I just repeated them automatically.
Thank you for this great course👌👌👌.

MohammadMahdiNiknam
Автор

Really great series mate, superb stuff, breaking down everything into first principles (pretty much) and going up from there - makes this easily digestible information and simple to follow along, even for beginners. Excellent stuff mate!

ashosaurus
Автор

Dude you are such an amazing teacher, I'm really learning a lot with you, thanks!

_jeff.medeiros
Автор

Your course is amazing. Its easy to follow and the way you explain things makes understanding the concepts very easy and graspable :) 🤝

babygrandadplays
Автор

Hey Teddy, really enjoying this series. I'm a frontend dev starting to cover more ground and this content is just awesome. Thanks a lot.

tomasbalducchi
Автор

lots of love from nepal your way of teaching is best ever

manooj
Автор

this series is gold! thank you so much for such gem!

maheshtamang
Автор

ThanK you so much for this series brother.

zeroj
Автор

Using a DTO (Data Transfer Object) can help you avoid those pesky circular reference errors.

willgordon
Автор

My Automapper unexpectedly crashed, prompting me to resort to manual mapping within my controller. However, the concept of employing extension methods is intriguing. Though I'm a novice, it has captivated me

Shalaby
Автор

Thank you so much. I'm new and I'm learning alot from you videos. I have one question. You said you are doing the mapping manually. How would it look like if it is automatically done? Is there a reason why you prefer it doing it manually?

Thanks

Hamza-kyus
Автор

Dude, incredible work u made here. going through the whole tutorial. Awesome !
One question, any tips on how to deploy a full-stack app like this? There is any way to do it for free somewhere, for portfolio purposes, or only via Azure, etc...

Thanks a million for the effort you put on the videos.

Choosebrand
Автор

What is the different in using the DTOs and ViewModels, because i can also use VM serve the same purpose, please i need your explanation. thank you

afeesolorunfemi
Автор

Hi, Teddy.

Thanks for the manual mapping. My question supposing we have more dtos do i have to configure all like this?

Okolieazubuike
Автор

Are comments still being accepter here?

robertwells
Автор

This sort of thing is why I dropped Java. If you're copying code around from one part of your project to another, something is poorly designed, usually the framework. This will never not result in a maintenance nightmare.

spacemanspiff
Автор

@mischief9499 i added the .Select() mapping before the .ToList(), but still getting the same.

orizonapp