DEV Community

Discussion on: Blazor: .NET in Your Browser

Collapse
 
shaijut profile image
Shaiju T • Edited

Thanks, I have one more question.

First it was Asp.NET Web Form then
ASP.NET MVC then
Asp.NET Core and now its Blazor.NET

So should I learn first Asp.NET Core or Blazor.NET ? Which is going to dominate the future ?

Collapse
 
jeremylikness profile image
Jeremy Likness ⚡️

Blazor doesn't replace ASP.NET. One is a client-side technology, the other is a server-side technology. If you want to stand up Web APIs, learning ASP.NET makes sense as the way to marshal data to your Blazor app. Much of the technology is complementary: the way you register services, etc. is consistent across the stacks.

Collapse
 
shaijut profile image
Shaiju T

Thanks for the reply. Appreciate. 😃 👍