-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Expand file tree
/
Copy pathtoc.yml
More file actions
2449 lines (2449 loc) · 109 KB
/
toc.yml
File metadata and controls
2449 lines (2449 loc) · 109 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
items:
- name: ASP.NET Core documentation
href: index.yml
- name: Overview
uid: index
- name: Get started
uid: get-started
- name: What's new
items:
- name: ASP.NET Core 11
items:
- name: What's new in 11
uid: aspnetcore-11
- name: ASP.NET Core 10
items:
- name: What's new in 10
uid: aspnetcore-10
- name: Breaking changes
items:
- name: Overview
href: breaking-changes/10/overview.md
- name: Cookie login redirects disabled for known API endpoints
href: breaking-changes/10/cookie-authentication-api-endpoints.md
- name: Deprecation of WithOpenApi extension method
href: breaking-changes/10/withopenapi-deprecated.md
- name: Exception diagnostics suppressed when TryHandleAsync returns true
href: breaking-changes/10/exception-handler-diagnostics-suppressed.md
- name: IActionContextAccessor and ActionContextAccessor are obsolete
href: breaking-changes/10/iactioncontextaccessor-obsolete.md
- name: IncludeOpenAPIAnalyzers property and MVC API analyzers are deprecated
href: breaking-changes/10/openapi-analyzers-deprecated.md
- name: IPNetwork and ForwardedHeadersOptions.KnownNetworks are obsolete
href: breaking-changes/10/ipnetwork-knownnetworks-obsolete.md
- name: Microsoft.Extensions.ApiDescription.Client package deprecated
href: breaking-changes/10/apidescription-client-deprecated.md
- name: Razor run-time compilation is obsolete
href: breaking-changes/10/razor-runtime-compilation-obsolete.md
- name: WebHostBuilder, IWebHost, and WebHost are obsolete
href: breaking-changes/10/webhostbuilder-deprecated.md
- name: ASP.NET Core 9
items:
- name: What's new in 9
uid: aspnetcore-9
- name: Breaking changes
items:
- name: Overview
href: breaking-changes/9/overview.md
- name: DefaultKeyResolution.ShouldGenerateNewKey has altered meaning
href: breaking-changes/9/key-resolution.md
- name: Dev cert export no longer creates folder
href: breaking-changes/9/certificate-export.md
- name: Forwarded Headers Middleware ignores X-Forwarded-* headers from unknown proxies
href: breaking-changes/8/forwarded-headers-unknown-proxies.md
- name: HostBuilder enables ValidateOnBuild/ValidateScopes in development environment
href: breaking-changes/9/hostbuilder-validation.md
- name: Legacy Mono and Emscripten APIs not exported to global namespace
href: breaking-changes/9/legacy-apis.md
- name: Middleware types with multiple constructors
href: breaking-changes/9/middleware-constructors.md
- name: ASP.NET Core 8
items:
- name: What's new in 8
uid: aspnetcore-8
- name: Breaking changes
items:
- name: Overview
href: breaking-changes/8/overview.md
- name: ConcurrencyLimiterMiddleware is obsolete
href: breaking-changes/8/concurrencylimitermiddleware-obsolete.md
- name: Custom converters for serialization removed
href: breaking-changes/8/problemdetails-custom-converters.md
- name: Forwarded Headers Middleware ignores X-Forwarded-* headers from unknown proxies
href: breaking-changes/8/forwarded-headers-unknown-proxies.md
- name: HTTP logging middleware requires AddHttpLogging()
href: breaking-changes/8/httplogging-addhttplogging-requirement.md
- name: ISystemClock is obsolete
href: breaking-changes/8/isystemclock-obsolete.md
- name: "Minimal APIs: IFormFile parameters require anti-forgery checks"
href: breaking-changes/8/antiforgery-checks.md
- name: Rate-limiting middleware requires AddRateLimiter
href: breaking-changes/8/addratelimiter-requirement.md
- name: Security token events return a JsonWebToken
href: breaking-changes/8/securitytoken-events.md
- name: TrimMode defaults to full for Web SDK projects
href: breaking-changes/8/trimmode-full.md
- name: ASP.NET Core 7
items:
- name: What's new in 7
uid: aspnetcore-7
- name: Breaking changes
items:
- name: Overview
href: breaking-changes/7/overview.md
- name: API controller actions try to infer parameters from DI
href: breaking-changes/7/api-controller-action-parameters-di.md
- name: ASPNET-prefixed environment variable precedence
href: breaking-changes/7/environment-variable-precedence.md
- name: AuthenticateAsync for remote auth providers
href: breaking-changes/7/authenticateasync-anonymous-request.md
- name: Authentication in WebAssembly apps
href: breaking-changes/7/wasm-app-authentication.md
- name: Default authentication scheme
href: breaking-changes/7/default-authentication-scheme.md
- name: Event IDs for some Microsoft.AspNetCore.Mvc.Core log messages changed
href: breaking-changes/7/microsoft-aspnetcore-mvc-core-log-event-ids.md
- name: Fallback file endpoints
href: breaking-changes/7/fallback-file-endpoints.md
- name: IHubClients and IHubCallerClients hide members
href: breaking-changes/7/ihubclients-ihubcallerclients.md
- name: "Kestrel: Default HTTPS binding removed"
href: breaking-changes/7/https-binding-kestrel.md
- name: Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv and libuv.dll removed
href: breaking-changes/7/libuv-transport-dll-removed.md
- name: Microsoft.Data.SqlClient updated to 4.0.1
href: breaking-changes/7/microsoft-data-sqlclient-updated-to-4-0-1.md
- name: Middleware no longer defers to endpoint with null request delegate
href: breaking-changes/7/middleware-null-requestdelegate.md
- name: MVC's detection of an empty body in model binding changed
href: breaking-changes/7/mvc-empty-body-model-binding.md
- name: Output caching API changes
href: breaking-changes/7/output-caching-renames.md
- name: SignalR Hub methods try to resolve parameters from DI
href: breaking-changes/7/signalr-hub-method-parameters-di.md
- name: ASP.NET Core 6
items:
- name: What's new in 6
uid: aspnetcore-6.0
- name: Breaking changes
items:
- name: Overview
href: breaking-changes/6/overview.md
- name: ActionResult<T> sets StatusCode to 200
href: breaking-changes/6/actionresult-statuscode.md
- name: AddDataAnnotationsValidation method made obsolete
href: breaking-changes/6/adddataannotationsvalidation-obsolete.md
- name: Assemblies removed from shared framework
href: breaking-changes/6/assemblies-removed-from-shared-framework.md
- name: "Blazor: Parameter name changed in RequestImageFileAsync method"
href: breaking-changes/6/blazor-parameter-name-changed-in-method.md
- name: "Blazor: WebEventDescriptor.EventArgsType property replaced"
href: breaking-changes/6/blazor-eventargstype-property-replaced.md
- name: "Blazor: Byte-array interop"
href: breaking-changes/6/byte-array-interop.md
- name: ClientCertificate doesn't trigger renegotiation
href: breaking-changes/6/clientcertificate-doesnt-trigger-renegotiation.md
- name: EndpointName metadata not set automatically
href: breaking-changes/6/endpointname-metadata.md
- name: "Identity: Default Bootstrap version of UI changed"
href: breaking-changes/6/identity-bootstrap4-to-5.md
- name: "Kestrel: Log message attributes changed"
href: breaking-changes/6/kestrel-log-message-attributes-changed.md
- name: "MessagePack: Library changed in @microsoft/signalr-protocol-msgpack"
href: breaking-changes/6/messagepack-library-change.md
- name: Microsoft.AspNetCore.Http.Features split
href: breaking-changes/6/microsoft-aspnetcore-http-features-package-split.md
- name: "Middleware: HTTPS Redirection Middleware throws exception on ambiguous HTTPS ports"
href: breaking-changes/6/middleware-ambiguous-https-ports-exception.md
- name: "Middleware: New Use overload"
href: breaking-changes/6/middleware-new-use-overload.md
- name: Minimal API renames in RC 1
href: breaking-changes/6/rc1-minimal-api-renames.md
- name: Minimal API renames in RC 2
href: breaking-changes/6/rc2-minimal-api-renames.md
- name: MVC doesn't buffer IAsyncEnumerable types
href: breaking-changes/6/iasyncenumerable-not-buffered-by-mvc.md
- name: Nullable reference type annotations changed
href: breaking-changes/6/nullable-reference-type-annotations-changed.md
- name: Obsoleted and removed APIs
href: breaking-changes/6/obsolete-removed-apis.md
- name: PreserveCompilationContext not configured by default
href: breaking-changes/6/preservecompilationcontext-not-set-by-default.md
- name: "Razor: Compiler generates single assembly"
href: breaking-changes/6/razor-compiler-doesnt-produce-views-assembly.md
- name: "Razor: Logging ID changes"
href: breaking-changes/6/razor-pages-logging-ids.md
- name: "Razor: RazorEngine APIs marked obsolete"
href: breaking-changes/6/razor-engine-apis-obsolete.md
- name: "SignalR: Java Client updated to RxJava3"
href: breaking-changes/6/signalr-java-client-updated.md
- name: TryParse and BindAsync methods are validated
href: breaking-changes/6/tryparse-bindasync-validation.md
- name: ASP.NET Core 5
items:
- name: What's new in 5
uid: aspnetcore-5.0
- name: Breaking changes
items:
- name: Overview
href: breaking-changes/5/overview.md
- name: ASP.NET Core apps deserialize quoted numbers
href: /dotnet/core/compatility/serialization/5.0/jsonserializer-allows-reading-numbers-as-strings
- name: AzureAD.UI and AzureADB2C.UI APIs obsolete
href: breaking-changes/5/authentication-aad-packages-obsolete.md
- name: BinaryFormatter serialization methods are obsolete
href: /dotnet/core/compatility/serialization/5.0/binaryformatter-serialization-obsolete
- name: Resource in endpoint routing is HttpContext
href: breaking-changes/5/authorization-resource-in-endpoint-routing.md
- name: Microsoft-prefixed Azure integration packages removed
href: breaking-changes/5/azure-integration-packages-removed.md
- name: "Blazor: Route precedence logic changed in Blazor apps"
href: breaking-changes/5/blazor-routing-logic-changed.md
- name: "Blazor: Updated browser support"
href: breaking-changes/5/blazor-browser-support-updated.md
- name: "Blazor: Insignificant whitespace trimmed by compiler"
href: breaking-changes/5/blazor-components-trim-insignificant-whitespace.md
- name: "Blazor: JSObjectReference and JSInProcessObjectReference types are internal"
href: breaking-changes/5/blazor-jsobjectreference-to-internal.md
- name: "Blazor: Target framework of NuGet packages changed"
href: breaking-changes/5/blazor-packages-target-framework-changed.md
- name: "Blazor: ProtectedBrowserStorage feature moved to shared framework"
href: breaking-changes/5/blazor-protectedbrowserstorage-moved.md
- name: "Blazor: RenderTreeFrame readonly public fields are now properties"
href: breaking-changes/5/blazor-rendertreeframe-fields-become-properties.md
- name: "Blazor: Updated validation logic for static web assets"
href: breaking-changes/5/blazor-static-web-assets-validation-logic-updated.md
- name: Cryptography APIs not supported on browser
href: /dotnet/core/compatility/cryptography/5.0/cryptography-apis-not-supported-on-blazor-webassembly
- name: "Extensions: Package reference changes"
href: breaking-changes/5/extensions-package-reference-changes.md
- name: Kestrel and IIS BadHttpRequestException types are obsolete
href: breaking-changes/5/http-badhttprequestexception-obsolete.md
- name: HttpClient instances created by IHttpClientFactory log integer status codes
href: breaking-changes/5/http-httpclient-instances-log-integer-status-codes.md
- name: "HttpSys: Client certificate renegotiation disabled by default"
href: breaking-changes/5/httpsys-client-certificate-renegotiation-disabled-by-default.md
- name: "IIS: UrlRewrite middleware query strings are preserved"
href: breaking-changes/5/iis-urlrewrite-middleware-query-strings-are-preserved.md
- name: "Kestrel: Configuration changes detected by default"
href: breaking-changes/5/kestrel-configuration-changes-at-run-time-detected-by-default.md
- name: "Kestrel: Default supported TLS protocol versions changed"
href: breaking-changes/5/kestrel-default-supported-tls-protocol-versions-changed.md
- name: "Kestrel: HTTP/2 disabled over TLS on incompatible Windows versions"
href: breaking-changes/5/kestrel-disables-http2-over-tls.md
- name: "Kestrel: Libuv transport marked as obsolete"
href: breaking-changes/5/kestrel-libuv-transport-obsolete.md
- name: Obsolete properties on ConsoleLoggerOptions
href: /dotnet/core/compatility/core-libraries/5.0/obsolete-consoleloggeroptions-properties
- name: ResourceManagerWithCultureStringLocalizer class and WithCulture interface member removed
href: breaking-changes/5/localization-members-removed.md
- name: Pubternal APIs removed
href: breaking-changes/5/localization-pubternal-apis-removed.md
- name: Obsolete constructor removed in request localization middleware
href: breaking-changes/5/localization-requestlocalizationmiddleware-constructor-removed.md
- name: "Middleware: Database error page marked as obsolete"
href: breaking-changes/5/middleware-database-error-page-obsolete.md
- name: Exception handler middleware throws original exception
href: breaking-changes/5/middleware-exception-handler-throws-original-exception.md
- name: ObjectModelValidator calls a new overload of Validate
href: breaking-changes/5/mvc-objectmodelvalidator-calls-new-overload.md
- name: Cookie name encoding removed
href: breaking-changes/5/security-cookie-name-encoding-removed.md
- name: IdentityModel NuGet package versions updated
href: breaking-changes/5/security-identitymodel-nuget-package-versions-updated.md
- name: "SignalR: MessagePack Hub Protocol options type changed"
href: breaking-changes/5/signalr-messagepack-hub-protocol-options-changed.md
- name: "SignalR: MessagePack Hub Protocol moved"
href: breaking-changes/5/signalr-messagepack-package.md
- name: UseSignalR and UseConnections methods removed
href: breaking-changes/5/signalr-usesignalr-useconnections-removed.md
- name: CSV content type changed to standards-compliant
href: breaking-changes/5/static-files-csv-content-type-changed.md
- name: What's new in 3.1
uid: aspnetcore-3.1
- name: What's new in 3.0
uid: aspnetcore-3.0
- name: What's new in 2.2
uid: aspnetcore-2.2
- name: What's new in 2.1
uid: aspnetcore-2.1
- name: What's new in 2.0
uid: aspnetcore-2.0
- name: What's new in 1.1
uid: aspnetcore-1.1
- name: Tutorials
displayName: tutorial
items:
- name: Web apps
items:
- name: Choose an ASP.NET Core UI
uid: tutorials/choose-web-ui
- name: Razor Pages
displayName: tutorial
items:
- name: Overview
uid: tutorials/razor-pages/index
- name: Get started
uid: tutorials/razor-pages/razor-pages-start
- name: Add a model
uid: tutorials/razor-pages/model
- name: Scaffolding
uid: tutorials/razor-pages/page
- name: Work with a database
uid: tutorials/razor-pages/sql
- name: Update the pages
uid: tutorials/razor-pages/da1
- name: Add search
uid: tutorials/razor-pages/search
- name: Add a new field
uid: tutorials/razor-pages/new-field
- name: Add validation
uid: tutorials/razor-pages/validation
- name: MVC
displayName: tutorial
items:
- name: Get started
uid: tutorials/first-mvc-app/start-mvc
- name: Add a controller
uid: tutorials/first-mvc-app/adding-controller
- name: Add a view
uid: tutorials/first-mvc-app/adding-view
- name: Add a model
uid: tutorials/first-mvc-app/adding-model
- name: Work with a database
uid: tutorials/first-mvc-app/working-with-sql
- name: Controller actions and views
uid: tutorials/first-mvc-app/controller-methods-views
- name: Add search
uid: tutorials/first-mvc-app/search
- name: Add a new field
uid: tutorials/first-mvc-app/new-field
- name: Add validation
uid: tutorials/first-mvc-app/validation
- name: Examine Details and Delete
uid: tutorials/first-mvc-app/details
- name: Blazor
uid: blazor/tutorials/index
- name: APIs
items:
- name: Minimal APIs
items:
- name: Create a minimal web API
displayName: API tutorial
uid: tutorials/min-web-api
- name: Controller-based APIs
items:
- name: Create a controller-based web API
displayName: API tutorial
uid: tutorials/first-web-api
- name: Web API with MongoDB
displayName: API tutorial
uid: tutorials/first-mongo-app
- name: Web API with JavaScript
displayName: tutorial
uid: tutorials/web-api-javascript
- name: Backend for mobile
displayName: tutorial
uid: mobile/native-mobile-backend
- name: Publish to Azure API Management
displayName: tutorial
uid: tutorials/publish-to-azure-api-management-using-vs
- name: Real-time web apps
items:
- name: SignalR with JavaScript
displayName: tutorial
uid: tutorials/signalr
- name: SignalR with TypeScript
displayName: tutorial
uid: tutorials/signalr-typescript-webpack
- name: SignalR with Blazor
displayName: tutorial
uid: blazor/tutorials/signalr-blazor
- name: Remote Procedure Call apps
items:
- name: Get started with a gRPC service
uid: tutorials/grpc/grpc-start
- name: Data access
items:
- name: EF Core with Razor Pages
displayName: tutorial
items:
- name: Get started
uid: data/ef-rp/intro
- name: Create, Read, Update, and Delete
uid: data/ef-rp/crud
- name: Sort, filter, page, and group
uid: data/ef-rp/sort-filter-page
- name: Migrations
uid: data/ef-rp/migrations
- name: Create a complex data model
uid: data/ef-rp/complex-data-model
- name: Read related data
uid: data/ef-rp/read-related-data
- name: Update related data
uid: data/ef-rp/update-related-data
- name: Handle concurrency conflicts
uid: data/ef-rp/concurrency
- name: EF Core with MVC
displayName: tutorial
items:
- name: Overview
uid: data/ef-mvc/index
- name: Get started
uid: data/ef-mvc/intro
- name: Create, Read, Update, and Delete
uid: data/ef-mvc/crud
- name: Sort, filter, page, and group
uid: data/ef-mvc/sort-filter-page
- name: Migrations
uid: data/ef-mvc/migrations
- name: Create a complex data model
uid: data/ef-mvc/complex-data-model
- name: Read related data
uid: data/ef-mvc/read-related-data
- name: Update related data
uid: data/ef-mvc/update-related-data
- name: Handle concurrency conflicts
uid: data/ef-mvc/concurrency
- name: Inheritance
uid: data/ef-mvc/inheritance
- name: Advanced topics
uid: data/ef-mvc/advanced
- name: Learn modules
items:
- name: Web apps >>
displayName: tutorial, razor, razor pages, ui
href: /training/modules/create-razor-pages-aspnet-core/
- name: Cloud-native microservices
items:
- name: Create and deploy >>
displayName: tutorial, kubernetes, aks, acr, docker
href: /training/modules/microservices-aspnet-core/
- name: Implement resiliency >>
displayName: tutorial, kubernetes, aks, acr, docker
href: /training/modules/microservices-resiliency-aspnet-core/
- name: Deploy with GitHub Actions >>
displayName: tutorial, kubernetes, aks, acr, docker, devops
href: /training/modules/microservices-devops-aspnet-core/
- name: Log and monitor >>
displayName: tutorial, kubernetes, aks, acr, docker, serilog
href: /training/modules/microservices-logging-aspnet-core/
- name: Implement feature flags >>
displayName: tutorial, kubernetes, aks, acr, docker
href: /training/modules/microservices-configuration-aspnet-core/
- name: Use managed data stores >>
displayName: tutorial, kubernetes, aks, acr, docker
href: /training/modules/microservices-data-aspnet-core/
- name: Implement API gateways >>
displayName: tutorial, kubernetes, aks, acr, docker
href: /training/modules/microservices-apigateway-aspnet-core/
- name: Data access >>
displayName: tutorial, ef, entity framework
href: /training/modules/persist-data-ef-core/
- name: Fundamentals
items:
- name: Overview
uid: fundamentals/index
- name: App start up
uid: fundamentals/startup
- name: Dependency injection (services)
uid: fundamentals/dependency-injection
- name: Native AOT
items:
- name: Overview
displayName: native, aot
uid: fundamentals/native-aot
- name: Tutorial
displayName: native, aot
uid: fundamentals/native-aot-tutorial
- name: Request Delegate Generator
displayName: aot, RDG, Request Delegate Generator
uid: fundamentals/aot/rdg
- name: Middleware
items:
- name: Middleware overview
uid: fundamentals/middleware/index
- name: Rate limiting middleware
uid: performance/rate-limit
- name: Rate limiting samples
uid: performance/rate-limit-sample
- name: Middleware in Minimal API apps
uid: fundamentals/minimal-apis/middleware
- name: Test middleware
uid: test/middleware
- name: Response caching middleware
uid: performance/caching/middleware
- name: Write middleware
uid: fundamentals/middleware/write
- name: Request and response operations
displayName: middleware
uid: fundamentals/middleware/request-response
- name: Request decompression
displayName: request decompression middleware
uid: fundamentals/middleware/request-decompression
- name: Factory-based middleware
uid: fundamentals/middleware/extensibility
- name: Factory-based middleware with third-party container
uid: fundamentals/middleware/extensibility-third-party-container
- name: Host
items:
- name: WebApplication and WebApplicationBuilder
uid: fundamentals/minimal-apis/webapplication
- name: Generic Host
uid: fundamentals/host/generic-host
- name: Web Host
uid: fundamentals/host/web-host
- name: Configuration
uid: fundamentals/configuration/index
- name: Options
uid: fundamentals/configuration/options
- name: Environments (dev, stage, prod)
uid: fundamentals/environments
- name: Logging and monitoring
items:
- name: Logging
uid: fundamentals/logging/index
- name: HTTP logging
uid: fundamentals/http-logging/index
- name: Enrich HTTP request logs in ASP.NET Core
uid: fundamentals/http-logging/http-log-enricher
- name: W3C logger
uid: fundamentals/w3c-logger/index
- name: Health checks
displayName: logging, monitoring
uid: host-and-deploy/health-checks
- name: Metrics overview
displayName: logging, monitoring
uid: log-mon/metrics/metrics
- name: Built-in metrics
uid: log-mon/metrics/built-in
- name: HttpContext
uid: fundamentals/use-httpcontext
- name: Routing
uid: fundamentals/routing
- name: Handle errors
uid: fundamentals/error-handling
- name: Make HTTP requests
displayName: httpclient, httpclientfactory
uid: fundamentals/http-requests
- name: Static files
uid: fundamentals/static-files
- name: dotnet-scaffold telemetry
uid: fundamentals/dotnet-scaffold-telemetry
- name: Web apps
items:
- name: Choose an ASP.NET Core UI
uid: tutorials/choose-web-ui
- name: Razor Pages
items:
- name: Architecture and concepts
uid: razor-pages/index
- name: Tutorial
items:
- name: Overview
uid: tutorials/razor-pages/index
- name: Get started
uid: tutorials/razor-pages/razor-pages-start
- name: Add a model
uid: tutorials/razor-pages/model
- name: Scaffolding
uid: tutorials/razor-pages/page
- name: Work with a database
uid: tutorials/razor-pages/sql
- name: Update the pages
uid: tutorials/razor-pages/da1
- name: Add search
uid: tutorials/razor-pages/search
- name: Add a new field
uid: tutorials/razor-pages/new-field
- name: Add validation
uid: tutorials/razor-pages/validation
- name: Filters
uid: razor-pages/filter
- name: Route and app conventions
uid: razor-pages/razor-pages-conventions
- name: Security and Identity
items:
- name: Authorization
items:
- name: Simple authorization
uid: razor-pages/security/authorization/simple
- name: Authorization conventions
uid: razor-pages/security/authorization/conventions
- name: Role-based authorization
uid: razor-pages/security/authorization/roles
- name: MVC
items:
- name: Overview
uid: mvc/overview
- name: Tutorial
items:
- name: Get started
uid: tutorials/first-mvc-app/start-mvc
- name: Add a controller
uid: tutorials/first-mvc-app/adding-controller
- name: Add a view
uid: tutorials/first-mvc-app/adding-view
- name: Add a model
uid: tutorials/first-mvc-app/adding-model
- name: Work with a database
uid: tutorials/first-mvc-app/working-with-sql
- name: Controller actions and views
uid: tutorials/first-mvc-app/controller-methods-views
- name: Add search
uid: tutorials/first-mvc-app/search
- name: Add a new field
uid: tutorials/first-mvc-app/new-field
- name: Add validation
uid: tutorials/first-mvc-app/validation
- name: Examine the Details and Delete methods
uid: tutorials/first-mvc-app/details
- name: Views
uid: mvc/views/overview
- name: Partial views
uid: mvc/views/partial
- name: Controllers
uid: mvc/controllers/actions
- name: Routing
uid: mvc/controllers/routing
- name: Dependency injection - controllers
uid: mvc/controllers/dependency-injection
- name: Dependency injection - views
uid: mvc/views/dependency-injection
- name: Unit test
uid: mvc/controllers/testing
- name: Security and Identity
items:
- name: Authorization
items:
- name: Simple authorization
uid: mvc/security/authorization/simple
- name: Custom authorization with IAuthorizationRequirementData
uid: mvc/security/authorization/iard
- name: Role-based authorization
uid: mvc/security/authorization/roles
- name: Blazor
items:
- name: Overview
uid: blazor/index
- name: Supported platforms
uid: blazor/supported-platforms
- name: Tooling
uid: blazor/tooling
- name: WebAssembly tooling and AOT
uid: blazor/tooling/webassembly
- name: Hosting models
uid: blazor/hosting-models
- name: Tutorials
items:
- name: Overview
uid: blazor/tutorials/index
- name: Build your first Blazor app
href: https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/intro
- name: Build a Blazor todo list app
uid: blazor/tutorials/build-a-blazor-app
- name: Build a Blazor movie database app
items:
- name: Overview
uid: blazor/tutorials/movie-database-app/index
- name: Create a Blazor Web App
uid: blazor/tutorials/movie-database-app/part-1
- name: Add and scaffold a model
uid: blazor/tutorials/movie-database-app/part-2
- name: Learn about Razor components
uid: blazor/tutorials/movie-database-app/part-3
- name: Work with a database
uid: blazor/tutorials/movie-database-app/part-4
- name: Add validation
uid: blazor/tutorials/movie-database-app/part-5
- name: Add search
uid: blazor/tutorials/movie-database-app/part-6
- name: Add a new field
uid: blazor/tutorials/movie-database-app/part-7
- name: Add interactivity
uid: blazor/tutorials/movie-database-app/part-8
- name: SignalR with Blazor
uid: blazor/tutorials/signalr-blazor
- name: Learn modules
href: /training/paths/build-web-apps-with-blazor/
- name: Blazor Hybrid
items:
- name: Overview
uid: blazor/hybrid/index
- name: Tutorials
items:
- name: Overview
uid: blazor/hybrid/tutorials/index
- name: .NET MAUI
uid: blazor/hybrid/tutorials/maui
- name: .NET MAUI with Blazor Web App
uid: blazor/hybrid/tutorials/maui-blazor-web-app
- name: Windows Forms
uid: blazor/hybrid/tutorials/windows-forms
- name: WPF
uid: blazor/hybrid/tutorials/wpf
- name: Routing and navigation
uid: blazor/hybrid/routing
- name: Static files
uid: blazor/hybrid/static-files
- name: Browser developer tools
uid: blazor/hybrid/developer-tools
- name: Reuse Razor components
uid: blazor/hybrid/reuse-razor-components
- name: Class libraries
uid: blazor/hybrid/class-libraries
- name: Class libraries best practices
uid: blazor/hybrid/class-libraries-best-practices
- name: Root component parameters
uid: blazor/hybrid/root-component-parameters
- name: Security and Identity
items:
- name: Overview
uid: blazor/hybrid/security/index
- name: Security considerations
uid: blazor/hybrid/security/security-considerations
- name: .NET MAUI with Blazor Web App and Identity sample
uid: blazor/hybrid/security/maui-blazor-web-identity
- name: Publish
uid: blazor/hybrid/publish/index
- name: Troubleshoot
uid: blazor/hybrid/troubleshoot
- name: Project structure
uid: blazor/project-structure
- name: Fundamentals
items:
- name: Overview
uid: blazor/fundamentals/index
- name: Routing
uid: blazor/fundamentals/routing
- name: Navigation
uid: blazor/fundamentals/navigation
- name: Configuration
uid: blazor/fundamentals/configuration
- name: Dependency injection
uid: blazor/fundamentals/dependency-injection
- name: Startup
uid: blazor/fundamentals/startup
- name: Environments
uid: blazor/fundamentals/environments
- name: Logging
uid: blazor/fundamentals/logging
- name: Handle errors
uid: blazor/fundamentals/handle-errors
- name: SignalR
uid: blazor/fundamentals/signalr
- name: Static files
uid: blazor/fundamentals/static-files
- name: Components
items:
- name: Overview
uid: blazor/components/index
- name: Render modes
uid: blazor/components/render-modes
- name: Prerender components
uid: blazor/components/prerender
- name: IHttpContextAccessor and HttpContext
uid: blazor/components/httpcontext
- name: Generic type support
uid: blazor/components/generic-type-support
- name: Synchronization context
uid: blazor/components/sync-context
- name: Preserve relationships with @key
uid: blazor/components/key
- name: Overwriting parameters
uid: blazor/components/overwriting-parameters
- name: Attribute splatting and arbitrary parameters
uid: blazor/components/attribute-splatting
- name: Layouts
uid: blazor/components/layouts
- name: Sections
uid: blazor/components/sections
- name: Control <head> content
uid: blazor/components/control-head-content
- name: Cascading values and parameters
uid: blazor/components/cascading-values-and-parameters
- name: Event handling
uid: blazor/components/event-handling
- name: Data binding
uid: blazor/components/data-binding
- name: Lifecycle
uid: blazor/components/lifecycle
- name: Component disposal
uid: blazor/components/component-disposal
- name: Virtualization
uid: blazor/components/virtualization
- name: Rendering
uid: blazor/components/rendering
- name: Templated components
uid: blazor/components/templated-components
- name: CSS isolation
uid: blazor/components/css-isolation
- name: Dynamically-rendered components
uid: blazor/components/dynamiccomponent
- name: QuickGrid component
uid: blazor/components/quickgrid
- name: Integrate with MVC/Razor Pages
uid: blazor/components/integration
- name: Integrate with MVC/Razor Pages (hosted WebAssembly)
uid: blazor/components/integration-hosted-webassembly
- name: Class libraries
uid: blazor/components/class-libraries
- name: Class libraries with static SSR
uid: blazor/components/class-libraries-with-static-ssr
- name: JavaScript apps and SPA frameworks
uid: blazor/components/js-spa-frameworks
- name: Components outside of ASP.NET Core
uid: blazor/components/render-outside-of-aspnetcore
- name: Built-in components
uid: blazor/components/built-in-components
- name: Globalization and localization
uid: blazor/globalization-localization
- name: Forms
items:
- name: Overview
uid: blazor/forms/index
- name: Input components
uid: blazor/forms/input-components
- name: Binding
uid: blazor/forms/binding
- name: Validation
uid: blazor/forms/validation
- name: Troubleshoot
uid: blazor/forms/troubleshoot
- name: File uploads
uid: blazor/file-uploads
- name: File downloads
uid: blazor/file-downloads
- name: JavaScript interop
items:
- name: Overview
uid: blazor/js-interop/index
- name: JavaScript location
uid: blazor/js-interop/javascript-location
- name: Call JS from .NET
uid: blazor/js-interop/call-javascript-from-dotnet
- name: Call .NET from JS
uid: blazor/js-interop/call-dotnet-from-javascript
- name: JSImport/JSExport interop
uid: blazor/js-interop/import-export-interop
- name: Static server rendering
uid: blazor/js-interop/ssr
- name: Call a web API
uid: blazor/call-web-api
- name: Images and documents
uid: blazor/images-and-documents
- name: Security and Identity
items:
- name: Overview
uid: blazor/security/index
- name: Authentication state
uid: blazor/security/authentication-state
- name: Blazor WebAssembly
items:
- name: Overview
uid: blazor/security/webassembly/index
- name: Standalone with Identity
items:
- name: Overview
uid: blazor/security/webassembly/standalone-with-identity/index
- name: Account confirmation and password recovery
uid: blazor/security/webassembly/standalone-with-identity/account-confirmation-and-password-recovery
- name: QR codes with TOTP
uid: blazor/security/webassembly/standalone-with-identity/qrcodes-for-authenticator-apps
- name: Standalone with Authentication library
uid: blazor/security/webassembly/standalone-with-authentication-library
- name: Standalone with Microsoft Accounts
uid: blazor/security/webassembly/standalone-with-microsoft-accounts
- name: Standalone with ME-ID
uid: blazor/security/webassembly/standalone-with-microsoft-entra-id
- name: Standalone with AAD B2C
uid: blazor/security/webassembly/standalone-with-azure-active-directory-b2c
- name: Hosted with ME-ID
uid: blazor/security/webassembly/hosted-with-microsoft-entra-id
- name: Hosted with AAD B2C
uid: blazor/security/webassembly/hosted-with-azure-active-directory-b2c
- name: Hosted with Identity Server
uid: blazor/security/webassembly/hosted-with-identity-server
- name: Additional scenarios
uid: blazor/security/webassembly/additional-scenarios
- name: ME-ID groups and roles
uid: blazor/security/webassembly/meid-groups-roles
- name: ME-ID groups and roles
uid: blazor/security/webassembly/meid-groups-roles-net5to7
- name: Graph API
uid: blazor/security/webassembly/graph-api
- name: Blazor Web App with Entra
uid: blazor/security/blazor-web-app-entra
- name: Blazor Web App with OIDC
uid: blazor/security/blazor-web-app-oidc
- name: Blazor Web App with Windows Auth
uid: blazor/security/blazor-web-app-windows-authentication
- name: Static server-side rendering threats
uid: blazor/security/static-server-side-rendering
- name: Interactive server-side rendering threats
uid: blazor/security/interactive-server-side-rendering
- name: Account confirmation and password recovery
uid: blazor/security/account-confirmation-and-password-recovery
- name: QR codes with TOTP
uid: blazor/security/qrcodes-for-authenticator-apps
- name: Content Security Policy
uid: blazor/security/content-security-policy
- name: EU General Data Protection Regulation (GDPR) support
uid: blazor/security/gdpr
- name: Server-side and Blazor Web App additional scenarios
uid: blazor/security/additional-scenarios
- name: State management
items:
- name: Overview
uid: blazor/state-management/index
- name: Prerendered state persistence
uid: blazor/state-management/prerendered-state-persistence
- name: Server
uid: blazor/state-management/server
- name: WebAssembly
uid: blazor/state-management/webassembly
- name: Protected browser storage
uid: blazor/state-management/protected-browser-storage
- name: Debug
uid: blazor/debug
- name: Lazy load assemblies with WebAssembly
uid: blazor/webassembly-lazy-load-assemblies
- name: WebAssembly native dependencies
uid: blazor/webassembly-native-dependencies
- name: Blazor with .NET on Web Workers
uid: blazor/blazor-web-workers
- name: Performance
items:
- name: Overview
uid: blazor/performance/index
- name: Rendering speed
uid: blazor/performance/rendering
- name: App download size
uid: blazor/performance/app-download-size
- name: JavaScript interop
uid: blazor/performance/js-interop
- name: WebAssembly runtime performance
uid: blazor/performance/webassembly-runtime-performance
- name: WebAssembly browser developer tools diagnostics
uid: blazor/performance/webassembly-browser-developer-tools
- name: WebAssembly Event Pipe diagnostics
uid: blazor/performance/webassembly-event-pipe
- name: Test components
uid: blazor/test
- name: Progressive Web Applications
items:
- name: Overview
uid: blazor/progressive-web-app/index
- name: Push notifications
uid: blazor/progressive-web-app/push-notifications
- name: Host and deploy
items:
- name: Overview
uid: blazor/host-and-deploy/index
- name: App base path
uid: blazor/host-and-deploy/app-base-path
- name: Server
items:
- name: Overview
uid: blazor/host-and-deploy/server/index
- name: Memory management
uid: blazor/host-and-deploy/server/memory-management
- name: Blazor WebAssembly
items:
- name: Overview
uid: blazor/host-and-deploy/webassembly/index
- name: Deploy to IIS
uid: blazor/host-and-deploy/webassembly/iis
- name: Deploy to Azure Static Web Apps
uid: blazor/host-and-deploy/webassembly/azure-static-web-apps
- name: Deploy to Azure Storage
uid: blazor/host-and-deploy/webassembly/azure-storage
- name: Deploy to Nginx
uid: blazor/host-and-deploy/webassembly/nginx
- name: Deploy to Apache
uid: blazor/host-and-deploy/webassembly/apache
- name: Deploy to GitHub Pages
uid: blazor/host-and-deploy/webassembly/github-pages
- name: Bundle caching and integrity check failures
uid: blazor/host-and-deploy/webassembly/bundle-caching-and-integrity-check-failures
- name: HTTP caching issues
uid: blazor/host-and-deploy/webassembly/http-caching-issues
- name: Multiple hosted WebAssembly apps
uid: blazor/host-and-deploy/webassembly/multiple-hosted-webassembly
- name: Deployment layout
uid: blazor/host-and-deploy/webassembly/deployment-layout
- name: Configure the Linker
uid: blazor/host-and-deploy/configure-linker
- name: Configure the Trimmer
uid: blazor/host-and-deploy/configure-trimmer
- name: Blazor with EF Core
uid: blazor/blazor-ef-core
- name: Advanced scenarios
uid: blazor/advanced-scenarios
- name: Client-side development
items:
- name: Single Page Apps
items:
- name: Angular with Visual Studio >>
href: /visualstudio/javascript/tutorial-asp-net-core-with-angular
- name: React with Visual Studio >>
href: /visualstudio/javascript/tutorial-asp-net-core-with-react
- name: Vue with Visual Studio >>
href: /visualstudio/javascript/tutorial-asp-net-core-with-vue
- name: JavaScript and TypeScript in Visual Studio >>
href: /visualstudio/javascript/javascript-in-visual-studio
- name: Overview of SPAs
uid: spa/intro
- name: Angular
uid: spa/angular
- name: React
uid: spa/react