Posts

.NET Core Interview Questions and Answer

What are the difference between ConfigureServices and Configure Method in Startup class ? ConfigureServices method gets call runtime to register services to DI container. After registering the dependent classes, you can use those classes anywhere in the application. The ConfigureServices method includes the IServiceCollection parameter to register services to the DI container Configure the method gets call runtime to configure the HTTP request pipeline for application. Configure use the instance of the IApplicationBuilder that is provided by In-Build IOC container. In other words, you add the middleware in this method like routing and other custom middleware as per your application requirements. Another answer in short cut -  ConfigureService is an optional method used to configure services that are used by our application where as ConfigureMethods defines how the application will respond to each http request. Another answer only in one line - ConfigureService - for add servic...