When considering long-term scalability, which template should be avoided for large-scale applications due to its server-side rendering nature?
- Web Application (Razor Pages)
- Web API
- Web Application
- Blazor Server
The "Web Application (Razor Pages)" template uses server-side rendering, where most of the processing occurs on the server before rendering content to the client. This can be a scalability bottleneck for large-scale applications with high traffic because it places a significant load on the server. Web APIs and client-side rendering approaches like Blazor Server are typically preferred for such scenarios.
Loading...
Related Quiz
- While exploring a sample ASP.NET Core MVC project, you see a folder named "Controllers." What is the primary responsibility of files within this folder?
- In ASP.NET Core, custom middlewares can be created using a delegate with the signature _______.
- In the context of ASP.NET Core, what does the CLI tool allow developers to do?
- How does ASP.NET Core Identity store user data by default?
- Application-specific settings, such as connection strings, can be added to the ________ file.