AspNetCore.Docs
AspNetCore.Docs copied to clipboard
Documentation for ASP.NET Core
Description Following these instructions led to I am running dot net 8 on my Mac. `###` System.NotSupportedException: JsonTypeInfo metadata for type 'System.Collections.Generic.List`1[BookStore.Models.BookModel]' was not provided by TypeInfoResolver of type '[]'....
### Description Decimal, double, and float will be supported per https://github.com/dotnet/aspnetcore/pull/60112. The current line reads ... > Other format expressions, such as currency or number formats, aren't available at this...
### UPDATE (3/6) ... If the PU fixes it entirely internally, we can just close this issue because the content to workaround the problem added by #34882 is versioned to...
### Description The startup options format will match the format used for Server and WebAssembly. * https://github.com/dotnet/aspnetcore/issues/51611 * https://github.com/dotnet/aspnetcore/pull/54649 ### Page URL https://learn.microsoft.com/en-us/aspnet/core/blazor/fundamentals/startup?view=aspnetcore-9.0 ### Content source URL https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/blazor/fundamentals/startup.md ### Document...
### Description Notes ... * Consider coverage for External ID, especially any specific gotchas 😈 that devs may face. For example, the first item of the *Troubleshoot* section is on...
### Description We added docs in https://github.com/dotnet/AspNetCore.Docs/pull/33460 but they only made it to release notes. We should update the main docs with this information. https://learn.microsoft.com/en-us/aspnet/core/fundamentals/websockets?view=aspnetcore-9.0#handle-client-disconnects ### Page URL https://learn.microsoft.com/en-us/aspnet/core/fundamentals/websockets?view=aspnetcore-9.0#handle-client-disconnects ###...
### Description These instructions do not work for us - it seems to base on older ap.net authentication templates. Please update. Many thanks in advance. [Hier Feedback eingeben] ### Page...
### Description Follow-up check to confirm that updated examples work correctly with the new declarative model for persisting state. The locations are ... - [x] *Integration* article: `WeatherForecastPreserveState` component example...
### Description The following code does not do what is described: ` DepartmentNameSL = new SelectList(departmentsQuery.AsNoTracking(), nameof(Department.DepartmentID), nameof(Department.Name), selectedDepartment);` The 4th argument "selectedDepartment" does not do anything in this context...