How to fix Add-Migration problem?
Hi, I am trying to add another entity to the database in my e-commerce solution which includes client and admin projects using Blazor WASM and Server, Asp.Net Core API, and data access projects. However, I am getting an error message as shown below: How…
Entity Framework Core
ASP.NET Core
Blazor
C#

how-to-forcefully-set-ies-compatibility-mode-off-from-the-server-side
Hi, I have an application that opens in Edge wih IE mode due to organization policy. From that application we open Blazor application in new tab/window. Due to redirection it also opens in Edge with IE mode and Blazor does'nt wor in IE mode. Please help…
Microsoft Edge

ASP.NET Core
Blazor

AmbiguousMatchException in net8 Blazor web app
I am encountering an AmbiguousMatchException error in my client-side Blazor web app. The error message says "The request matched multiple endpoints. Matches: Fallback {*path:nonfile}". I tried to add app.razor containing this lines…
.NET
ASP.NET Core
Blazor
Blazor Server .NET 8 authorization Dependency Injection User Settings
I have a IUserSettings interface to use between Blazor and a Desktop. I have a task in the interface called Task GetUserSettingsAsync(AuthenticationStateProvider authenticationStateProvider). Once the website comes back from Microsoft Entra, I want to…
Blazor
I have a Blazor App for .NET using the server mode. I now want to add wasm mode to it as well. What changes are required?
I started my project that uses the Blazor Server template from Visual Studio 2022 for .NET8. I now realize I want to add a wasm project to it as well so can take advantage of auto mode. What changes are required in the server project so my components can…
ASP.NET Core
Blazor
Line number and path or file name missing when logs maintain in azure applicationinsights for blazorWASM application
I had develop blazorWASM application logs using these links. I had used .NET core 6.0.I had use ILoggers<Type> logger…
Blazor
How to set up Custom Authentication State in Blazor Server .net 8 or 9
Hi, I set authentication settings in Blazor Server .NET 9. After setting it, I put the [Authorize] attribute on the API call in the controller. So it will fetch the authorization header of the access token, and the API will be authorized to show…
Blazor

How to use a blazor server app with a web api for authentication and persist authentication across circuits?
I originally posted a comment under this question as I am following a similar scenario: https://learn.microsoft.com/en-us/answers/questions/1454927/how-to-use-a-blazor-server-app-with-a-web-api-for I have a custom AuthenticationStateProvider which is…
Blazor
Streaming Issue with Blazor WebAssembly and Sematic Kernel and Open AI
I am using Blazor WebAssembly connecting to Azure Open AI. When I try to stream the response. I get the error message below. This is my code: public partial class HomeView { [Inject] Kernel Kernel { get; set; } private string message; private string…
Blazor
Create Identity Provider without Identity Server
Hi, I am learning something new and want to develop the identity provider similar to IdentityServer4. I am making quite some progress. The client project is Blazor OIDC, and Microsoft does it on Community Standup live. Auth Server is…
Blazor


Blazor WASM JS Calls with an Object Argument Work in VS Debug But Not a Published Release
I have a Blazor WASM app that uses JSRuntime to Get/Put IndexedDB data (mockup below). Calls to "Put" functions that pass an object (not a native type) to be stored work fine in the VS Community 2022 debugger, but when I run a published…
Blazor
Deploying .NET 8 Blazor Interactive server to an "app" in IIS
Am trying to install a blazor 8 server app on IIS. Everything works fine within VS2022, but once I deploy the files to IIS I get some errors. I've tried <base href="/BlazorApp4/" /> or <base href="/" /> and …
Blazor
In Blazor Server App, getting 404 error on page refresh
I am working on a Blazor server app with ASP.NET Core MVC and MudBlazor for design. My panel pages are in a PanelProject. I face the following issues: Whenever I try to refresh a page, I get a 404 error. Sometimes, I get a 403 error without knowing…
Blazor
Exception when linking to Microsoft Store Purchase API library from Blazor MAUI Windows App
Hi, I am have written multile Microsoft Store Apps in the UWP and WPF frameworks and published them to the Store. These apps all have to and do call the Microsoft Store Purchase API. Now I'm building a Blazor MAUI Store App and have found apps in the…
Blazor
.NET MAUI
Microsoft Partner Center API
Blazor server logout on SignalR connection break
My Blazor server-side application logs out the user whenever the SignalR connection breaks. For example, when I lock my phone for half an hour and then return to the site, I'm logged out. How can I prevent this from happening?
Microsoft Identity Manager
ASP.NET Core
Blazor

Multiple App.Razor components
Hello, Is it possible to have an additional App.razor file that I can use for e.g. Admin area only? Currently, if I create a new folder named Admin and create a new layout there, it inherits from the existing App.razor and linked css files. Basically, I…
ASP.NET Core
Blazor
ASP.NET
Blazor app crashes when debugging after windows secutiry updates
Afert 2023 march 14 updates my app stop debugging. If I start it without debugging it works ok, if I start it debugging it crashes at startup. The error is the following: Microsoft.WebAssembly.Diagnostics.DevToolsProxy[0] DevToolsProxy::Run: Exception…
Blazor
Linq ThenInclude Where Problem
Hello, I am trying to get only IsActive=1 data with this Linq; _db.Orders.Include(d => d.OrderDetails).ThenInclude(v => v.Vendor).Where(o=> o.OrderDetails.Any(od => od.IsActive == 1)).ToListAsync(); But the query brings all the…
Blazor
C#

How to fixTypeLoadException: Could not load type 'Microsoft.Graph.IAuthenticationProviderOption' from assembly 'Microsoft.Graph.Core, Version=3.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.
I am using Microsoft Graph 5.69 <PackageReference Include="Microsoft.Graph" Version="5.69.0" /> Each time, I register the Microsoft Graph service in program.cs …
Microsoft Graph
Blazor
How to use a blazor server app with a web api for authentication?
I've search the web for a simple tutorial for this but I can't seem to find this exact scenario. I have the following projects: WebApi This is a standard .NET 8.0 web api with individual accounts authentication. I've created everything using the…