Sorry, there's nothing at this address.
9 |This component demonstrates Cascading dropdown
10 | 11 | @if (categories == null) 12 | { 13 |Loading...
14 | } 15 | else 16 | { 17 |This component demonstrates Cascading dropdown
10 | 11 | @if (categories == null) 12 | { 13 |Loading...
14 | } 15 | else 16 | { 17 |Current count: @currentCount
7 | 8 | 9 |9 | Swapping to Development environment will display more detailed information about the error that occurred. 10 |
11 |12 | The Development environment shouldn't be enabled for deployed applications. 13 | It can result in displaying sensitive information from exceptions to end users. 14 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 15 | and restarting the app. 16 |
-------------------------------------------------------------------------------- /Pages/FetchData.razor: -------------------------------------------------------------------------------- 1 | @page "/fetchdata" 2 | 3 | @using BlazorApp.Data 4 | @inject WeatherForecastService ForecastService 5 | 6 |This component demonstrates fetching data from a service.
9 | 10 | @if (forecasts == null) 11 | { 12 |Loading...
13 | } 14 | else 15 | { 16 |Date | 20 |Temp. (C) | 21 |Temp. (F) | 22 |Summary | 23 |
---|---|---|---|
@forecast.Date.ToShortDateString() | 30 |@forecast.TemperatureC | 31 |@forecast.TemperatureF | 32 |@forecast.Summary | 33 |