2
2
3
3
These samples require [ .NET 8.0 RC 2] ( https://github.com/dotnet/installer#table ) .
4
4
5
+ ## Misc New Features
6
+
7
+ * [ Short Circuit] ( map-short-circuit )
8
+
9
+ Use ` MapShortCircuit ` or ` .ShortCircuit() ` to efficiently respond to a request without going through a middleware pipeline run.
10
+
11
+ * [ SlimBuilder] ( slim-builder )
12
+
13
+ ` WebApplication.CreateSlimBuilder ` creates ` WebApplicationBuilder ` with minimal configuration defaults.
14
+
15
+ * [ EmptyBuilder] ( empty-builder )
16
+
17
+ ` WebApplication.CreateEmptyBuilder ` creates ` WebApplicationBuilder ` with no built-in behavior.
18
+
19
+
20
+ ## What's new in Blazor 8
21
+
5
22
* [ QuickGrid One] ( QuickGridOne )
6
23
7
24
This sample demonstrates a simple usage of QuickGrid component displaying int, string, date, and boolean data types.
@@ -54,18 +71,6 @@ These samples require [.NET 8.0 RC 2](https://github.com/dotnet/installer#table)
54
71
55
72
This sample shows how to access ` HttpContext ` from a static Razor component.
56
73
57
- * [ Short Circuit] ( map-short-circuit )
58
-
59
- Use ` MapShortCircuit ` or ` .ShortCircuit() ` to efficiently respond to a request without going through a middleware pipeline run.
60
-
61
- * [ SlimBuilder] ( slim-builder )
62
-
63
- ` WebApplication.CreateSlimBuilder ` creates ` WebApplicationBuilder ` with minimal configuration defaults.
64
-
65
- * [ EmptyBuilder] ( empty-builder )
66
-
67
- ` WebApplication.CreateEmptyBuilder ` creates ` WebApplicationBuilder ` with no built-in behavior.
68
-
69
74
## Blazor SSR Form Handling
70
75
71
76
* [ RazorFormHandlingOne] ( RazorFormHandlingOne )
@@ -88,7 +93,7 @@ These samples require [.NET 8.0 RC 2](https://github.com/dotnet/installer#table)
88
93
89
94
This example shows how to perform data validation using ` DataAnnotationsValidator ` and ` EditForm ` .
90
95
91
- ## Mix and Match
96
+ ## Mix and Match Blazor SSR with existing tech
92
97
93
98
* [ RazorMixMatchOne] ( RazorMixMatchOne )
94
99
@@ -106,7 +111,7 @@ These samples require [.NET 8.0 RC 2](https://github.com/dotnet/installer#table)
106
111
107
112
This example shows how to use Blazor SSR with MVC, Razor Pages and Minimal API in the same system.
108
113
109
- ## Component
114
+ ## Blazor Component Model Improvements
110
115
111
116
* [ ComponentTwentyThree] ( ComponentTwentyThree )
112
117
@@ -128,13 +133,12 @@ These samples require [.NET 8.0 RC 2](https://github.com/dotnet/installer#table)
128
133
129
134
This sample shows how to use ` [Inject(Key)] ` in consuming keyed services.
130
135
131
- ## Minimal API
136
+ ## Minimal API Improvements
132
137
133
138
* [ Minimal API Form Model Binding] ( minimal-api-form-model-binding )
134
139
135
140
This sample demonstrates the ability to use ` [FromForm] ` binding in Minimal API.
136
141
137
-
138
142
## Request Timeout
139
143
140
144
* [ Request Timeout] ( request-timeout )
0 commit comments