In comparison to the traditional ASP.NET, how does ASP.NET Core handle configuration data?
- It uses JSON files only
- It relies solely on XML configuration files
- It uses a flexible and extensible configuration system
- It doesn't support configuration data
ASP.NET Core introduced a flexible and extensible configuration system that allows developers to configure applications using various sources, such as JSON, XML, environment variables, command-line arguments, and more. This approach offers better configurability and ease of use compared to the traditional ASP.NET configuration methods.
Loading...
Related Quiz
- If you wish to limit the elements on which your custom tag helper is applied, you can set the _______ property.
- For a new e-commerce website, the client needs users to verify their emails before making a purchase. Which feature in ASP.NET Core Identity would assist in this?
- To override the default routing conventions in MVC, you can use the _________ attribute on your action methods.
- When defining a one-to-many relationship in Entity Framework Core, which Fluent API method is commonly used to represent the "many" side?
- You've heard about two-factor authentication for enhancing security. How can ASP.NET Core Identity help in implementing this feature?