I want to some advices
Hello, im a 3rd grade computer engineering student. I want to be a .net core back-end developer. I have made some MVC projects and improved myself on it but i dont have enough knowledge of API's that is the most important part of the back-end development. How can I improve myself in this area? Which sources can you recommend?
7 Replies
Make APIs. It's a very common project type, so there are thousands of tutorials and guides and documentation out there for it
There are also as many opinions on how to do it the right way as there are developers 🙂
yup learning by doing and expanding your knowledge on the way...
this is such a broad topic and you can specialize in so many ways.
My advice is to just start with
dotnet new webapi
and go from there. Don't immediately go for a tutorial. Avoid "Clean architecture".Also learn EF Core
Yup. And learn it properly
i know some of ef core. I used ef core in my mvc projects and also i trained on some the details of ef core like configurations, entity relations and model states
Great, that's important knowledge. Next is learning "best practices" around EF Core, like avoiding repositories, how to write efficient queries, etc