Sunday 28 July 2019

ASP.NET Core Interview Questions and Answers

What is .NET Core?

  • cross-platform version of .NET, that supports almost all things that .NET supported (except things like WPF, Windows Forms, Web Forms and Active Directory)
  • It is leaner, faster and improved version of .NET
  • .NET Core and ASP.NET Core are FREE and Open Source but also they are supported by Microsoft.
  • It is kinda the new .NET framework
  • Main framework that Microsoft has been focusing on is .NET Core
  • The .NET Core Runtime installation file is only about 20 MBs
  • .NET Core provides dotnet CLI – command line interface
Main characterestics of ASP.NET Core:
  • DI Container which is quite simple and built-in. You can extend it with other popular DI containers
  • Built-in and extensible structured logging. You can redirect output to as many sources as you want (file, Azure, AWS, console)
  • Extensible strongly typed configuration, which can also be used to reload at run-time
  • Kestrel – new, cross-platform and super fast web server which can stand alone without IIS, Nginx or Apache
  • New, fully async pipeline. It is easily configured via middleware
  • ASP.NET All meta package which improves development speed, and enables you to reference all Microsoft packages for ASP.NET Core and it will deploy only those that are being used by your code
  • There is no web.config. We now use appsettings.json file in combination with other sources of configuration (command line args, environment variables, etc.)
  • There is no Global.asax – We have Startup.cs which is used to set up Middleware and services for DI Container.
  • 1) What are the advantages of ASP.NET Core over ASP.NET?

    There are following advantages of ASP.NET Core over ASP.NET :
    • It is cross-platform, so it can be run on Windows, Linux, and Mac.
    • There is no dependency on framework installation because all the required dependencies are ship with our application
    • ASP.NET Core can handle more request than the ASP.NET
    • Multiple deployment options available withASP.NET Core
  • What is Metapackages?

    The framework .NET Core 2.0 introduced Metapackage that include all the supported package by ASP.NET code with their dependencies into one package. It helps us to do fast development as we don't require to include the individual ASP.NET Core packages. The assembly Microsoft.AspNetCore.All is a meta package provide by ASP.NET core.
  • Can ASP.NET Core application work with full .NET 4.x Framework?

    Yes. ASP.NET core application works with full .NET framework via the .NET standard library.
  • What is the startup class in ASP.NET core?

    Startup class is the entry point of the ASP.NET Core application. Every .NET Core application must have this class. This class contains the application configuration rated items. It is not necessary that class name must "Startup", it can be anything, we can configure startup class in Program class.
    1. //Nicer way to understand execution
    2. public class Program
    3. {
    4. public static void Main(string[] args)
    5. {
    6. CreateWebHostBuilder(args).Build().Run();
    7. }
    8. public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
    9. WebHost.CreateDefaultBuilder(args)
    10. .UseStartup<TestClass>();
    11. }
    1. What is the use of ConfigureServices method of startup class?

      This is an optional method of startup class. It can be used to configure the services that are used by the application. This method calls first when the application is requested for the first time. Using this method, we can add the services to the DI container, so services are available as a dependency in controller constructor.
    2. What is the use of Configure method of startup class?

      It defines how the application will respond to each HTTP request. We can configure the request pipeline by configuring the middleware. It accepts IApplicationBuilder as a parameter and also it has two optional parameters: IHostingEnvironment and ILoggerFactory. Using this method, we can configure built-in middleware such as routing, authentication, session, etc. as well as third-party middleware.
    3. What is middleware?

      It is software which is injected into the application pipeline to handle request and responses. They are just like chained to each other and form as a pipeline. The incoming requests are passes through this pipeline where all middleware is configured, and middleware can perform some action on the request before passes it to the next middleware. Same as for the responses, they are also passing through the middleware but in reverse order.
  • What is the difference between IApplicationBuilder.Use() and IApplicationBuilder.Run()?

    We can use both the methods in Configure methods of startup class. Both are used to add middleware delegate to the application request pipeline. The middleware adds using IApplicationBuilder.Use may call the next middleware in the pipeline whereas the middleware adds using IApplicationBuilder.Run method never calls the subsequent ore next middleware. After IApplicationBuilder.Run method, system stop adding middleware in request pipeline.
    1. What is routing in ASP.NET Core?

      Routing is functionality that map incoming request to the route handler. The route can have values (extract them from URL) that used to process the request. Using the route, routing can find route handler based on URL. All the routes are registered when the application is started. There are two types of routing supported by ASP.NET Core
      • The conventional routing
      • Attribute routing
      The Routing uses routes for map incoming request with route handler and Generate URL that used in response. Mostly, the application having a single collection of routes and this collection are used for the process the request. The RouteAsync method is used to map incoming request (that match the URL) with available in route collection.
    2. How to enable Session in ASP.NET Core?

      The middleware for the session is provided by the package Microsoft.AspNetCore.Session. To use the session in ASP.NET Core application, we need to add this package to csproj file and add the Session middleware to ASP.NET Core request pipeline.
      1. public class Startup
      2. {
      3. public void ConfigureServices(IServiceCollection services)
      4. {
      5. ….
      6. ….
      7. services.AddSession();
      8. services.AddMvc();
      9. }
      10. public void Configure(IApplicationBuilder app, IHostingEnvironment env)
      11. {
      12. ….
      13. ….
      14. app.UseSession();
      15. ….
      16. ….
      17. }
      18. }
    3. What are the various JSON files available in ASP.NET Core?

      There are following JSON files in ASP.NET Core :
      • global.json
      • launchsettings.json
      • appsettings.json
      • bundleconfig.json
      • bower.json
      • package.json
    4. What is tag helper in ASP.NET Core?

      It is a feature provided by Razor view engine that enables us to write server-side code to create and render the HTML element in view (Razor). The tag-helper is C# classes that used to generate the view by adding the HTML element. The functionality of tag helper is very similar to HTML helper of ASP.NET MVC.
      1. Example:
      2. //HTML Helper
      3. @Html.TextBoxFor(model => model.FirstName, new { @class = "form-control", placeholder = "Enter Your First Name" })
      4. //content with tag helper
      5. <input asp-for="FirstName" placeholder="Enter Your First Name" class="form-control" />
      6. //Equivalent HTML
      7. <input placeholder="Enter Your First Name" class="form-control" id="FirstName" name="FirstName" value="" type="text">
    5. How to disable Tag Helper at element level?

      We can disable Tag Helper at element level using the opt-out character ("!"). This character must apply opening and closing the Html tag.
      Example
      1. <!span asp-validation-for="phone" class="divPhone"></!span>
    6. What are Razor Pages in ASP.NET Core?

      This is a new feature introduced in ASP.NET Core 2.0. It follows a page-centric development model just like ASP.NET web forms. It supports all the feature of ASP.NET Core.
      Example
      1. @page
      2. <h1> Hello, Book Reader!</h1>
      3. <h2> This is Razor Pages </h2>
      The Razor pages start with the @page directive. This directive handle request directly without passing through the controller. The Razor pages may have code behind file, but it is not really code-behind file. It is class inherited from PageModel class.
    7. How can we do automatic model binding in Razor pages?

      The Razor pages provide the option to bind property automatically when posted the data using BindProperty attribute. By default, it only binds the properties only with non-GET verbs. we need to set SupportsGet property to true to bind a property on getting request.
      Example
      1. public class Test1Model : PageModel
      2. {
      3. [BindProperty]
      4. public string Name { get; set; }
      5. }
    8. How can we inject the service dependency into the controller?

      There are three easy steps to add custom service as a dependency on the controller.
      Step 1: Create the service
      1. public interface IHelloWorldService
      2. {
      3. string SaysHello();
      4. }
      5. public class HelloWorldService: IHelloWorldService
      6. {
      7. public string SaysHello()
      8. {
      9. return "Hello ";
      10. }
      11. }
      Step 2: Add this service to Service container (service can either added by singleton, transient or scoped)
      1. public void ConfigureServices(IServiceCollection services)
      2. {
      3. ….
      4. services.AddTransient<IHelloWorldService, HelloWorldService>();
      5. }
      Step 3: Use this service as a dependency in the controller
      1. public class HomeController: Controller
      2. {
      3. IHelloWorldService _helloWorldService;
      4. public HomeController(IHelloWorldService helloWorldService)
      5. {
      6. _helloWorldService = helloWorldService;
      7. }
      8. }
    9. How to specify service lifetime for register service that added as a dependency?

       
      ASP.NET Core allows us to specify the lifetime for registered services. The service instance gets disposed of automatically based on a specified lifetime. So, we do not care about the cleaning these dependencies, it will take care by ASP.NET Core framework. There is three type of lifetimes.

      Singleton

      ASP.NET Core will create and share a single instance of the service through the application life. The service can be added as a singleton using AddSingleton method of IServiceCollection. ASP.NET Core creates service instance at the time of registration and subsequence request use this service instance. Here, we do not require to implement Singleton design pattern and single instance maintained by the ASP.NET Core itself.
      Example
      1. services.AddSingleton<IHelloWorldService, HelloWorldService>();

      Transient

      ASP.NET Core will create and share an instance of the service every time to the application when we ask for it. The service can be added as Transient using AddTransient method of IServiceCollection. This lifetime can be used in stateless service. It is a way to add lightweight service.
      Example
      1. services.AddTransient<IHelloWorldService, HelloWorldService>();

      Scoped

      ASP.NET Core will create and share an instance of the service per request to the application. It means that a single instance of service available per request. It will create a new instance in the new request. The service can be added as scoped using an AddScoped method of IServiceCollection. We need to take care while, service registered via Scoped in middleware and inject the service in the Invoke or InvokeAsync methods. If we inject dependency via the constructor, it behaves like singleton object.
      1. services.AddScoped<IHelloWorldService, HelloWorldService>();
    Feel free to reach out @ gjinformatic@gmail.com