• Home
  • Projects
  • Resume
  • Paintings
  • Blogs
imcodebased
Stay hungry Stay foolish
Category: .NET Core

Important Links

  • vDreamLIFE
  • SOSMATE APP
 

Menu

Skip to content
  • Home
  • Projects
  • Resume
  • Paintings
  • Blogs

POPULAR POSTS

  • Node.JS: Error Cannot find module [SOLVED] 25 views | posted on June 10, 2016
  • Setting HttpContext Response using HttpResponseMessage or Request.CreateResponse in WebApi2 14 views | posted on March 19, 2016
  • npm –save or –save-dev. Which one to use? 5 views | posted on March 30, 2015
  • Note to a Software Developer – Sigma 2: Technology Selection 1 view | posted on August 6, 2014
  • Hangfire 1 view | posted on July 26, 2017

Recent Posts

  • My take on Dependency Injection in ASP.NET Core April 5, 2019
  • Mixin Pattern (Class?) in C# October 21, 2017
  • Understanding The Boyer-Moore Horspood algorithm using C# code September 17, 2017
  • Prototype in Javascript August 19, 2017
  • Playground – Javascript Object Properties. August 17, 2017
  • Validate JSON response with URLs | Scripting Postman August 6, 2017
  • Hangfire July 26, 2017
  • My first Sketchnotes on “The Sketchnote Handbook” July 9, 2017

Categories

  • About me (8)
  • Architecture (4)
  • Azure (1)
  • Change Management (1)
  • Community (1)
  • Configuration Management (2)
  • Development (28)
    • .NET Core (1)
    • Android (2)
    • Design Patterns (1)
    • JavaScript (2)
  • DOEACC (13)
  • IT (1)
  • ITIL (1)
  • Life Diary (1)
  • Office 365 (1)
  • OOPS (2)
  • Personality Development (8)
  • Poetry (2)
  • Project Management (6)
    • Agile (5)
  • Technical Achievements (5)
  • Tips (7)
    • mac (1)
  • Tools (6)
  • Uncategorized (20)

Recent Tweets

Tweets by imcodebased

Downloads

  • RESUME
Powered by Verbosa & WordPress.

Category: .NET Core

My take on Dependency Injection in ASP.NET Core

My take on Dependency Injection in ASP.NET Core

Amit Malhotra April 5, 2019 .NET Core / Development

Application Settings – Configuration Everything that you used to store in .net web.config is now stored in .net core appsettings.json content file. To manipulate, you will use microsoft.extensions.configuration.json package. Once it is loaded through the BuildWebHost(…) method defined in Program.cs, you will be able to use IConfiguration DI object for appsettings …

Continue reading
Top