In the previous exercise, you registered services using the singleton service lifetime. In a code review, your team lead asks you to investigate the differences between the singleton , scoped , and transient service lifetimes. power bi training courses malaysia Test the singleton service lifetime The app should still be running from the previous exercise. If it's not, run the app as before. Refresh the browser window and note the time displayed in the welcome message. Wait a few seconds, and then refresh the browser window again. The welcome message doesn't change. The timestamp and GUID remain the same. The time and GUID displayed in the welcome message don't change because the WelcomeService service is registered as a Singleton service. The service is created once when the app starts and is reused for the lifetime of the app. Every request, from every client, uses the same instance of the service. No other instance of the service is creat...