Statistics
The Highest Post







Statistics
Count 20
Avg 21.00
Min 21
Max 21
Asp.Net Core Top questions

Details



Peter Agyekum Why Use ASP.NET Core for Web Application Development? Ans: ASP.NET Core is a robust, and feature-rich framework that provides features to develop super-fast APIs for web apps. Cross-platform: Runs on Windows, macOS, and Linux; can be ported to other OSes. The supported Operating Systems (OS), CPUs, and application scenarios will grow over time, provided by Microsoft, other companies, and individuals. Flexible deployment: Can be included in your app or installed side-by-side user or machine-wide. Runs on IIS or can be self-hosted in your own process. Built-in support for dependency injection. ASP.NET Core is cloud-ready and has improved support for cloud deployment. Provides Support for Popular JavaScript Frameworks. Unification Of Development Models which allows the MVC and Web API development models to use the same base class Controller. Razor Pages makes coding page-focused scenarios easier and more productive. Environment based configuration supported for cloud deployment. Built-in logging support. In ASP.NET we had modules and handlers to deal with requests. In ASP.NET Core we have middleware which provides more control over how the request should be processed as they are executed in the order in which they are added.