blazorblazor-server-side

Why Blazor Server .NET 9 shows references missing for QuickGrid


I am try to use QuickGrid in a Blazor Web app and server. But the code always shows "assembly missing". I followed all step as per documentation and apply it but still it shows

QuickGrid missing in namespace
dotnet add package Microsoft.AspNetCore.Components.QuickGrid

I have installed that nuget package:

nuget package

@using Microsoft.AspNetCore.Components.QuickGrid

Error images


Solution

  • I ran into this issue this morning as well. After reviewing the nuget package, I noticed it had a dependency for Microsoft.AspNetCore.Components.Web (>= 9.0.4) which was not installed. Installing that package addressed the issue for me.