DEV Community

Cover image for What are the things that an Asp.Net developer should know in 2020 ?
narendra8989
narendra8989

Posted on

What are the things that an Asp.Net developer should know in 2020 ?

Whether you are a beginner or veteran ASP.NET developer, You would focus on the following items:

ASP.NET Core 1.0
ASP.NET MVC Core 1.0
EF Core 1.0
ASP.NET WebAPI
SignalR Core

ASP.NET Core 1.0
It’s faster, sleeker, and the RTM just came out. It changes how Microsoft developers will write web applications.

ASP.NET MVC Core 1.0
The biggest change here is on the Middleware pipeline currently in place at startup. This allows you to define your software requirements upfront and focus on your application. It’s also completely asynchronous now.

EF Core 1.0
Entity Framework has come a long way (especially the jump from 1.0 to 4.0 :-p ). The ORM now includes Batch processing of SQL Statements and Asynchronous operations.

ASP.NET WebAPI
Since Software is still eating the world, API’s are an absolute must to know. ASP.NET WebAPI is similarly based on the MVC model, so once you know ASP.NET MVC, you can easily translate that knowledge into writing WebAPIs.

SignalR Core (scheduled for this year since Core RTM was released)
SignalR was introduced almost 5 years ago and has changed how I look at AJAX calls. SignalR Core isn’t out yet, but this will be a game-changer when coupled with ASP.NET MVC Core. I talk about it on my site all the time.

Click here to become an Asp.Net Developer : https://nareshit.com/asp-net-mvc-online-training/

Top comments (0)