Error CS1061 ‘IJSRuntime’ does not contain a definition for ‘Current’.
Error CS1061 ‘IJSRuntime’ does not contain a definition for ‘Current’ and no accessible extension method ‘Current’ accepting a first argument of type ‘IJSRuntime’ could be found (are you missing a using directive or an assembly reference?) Solution In ASP.NET Core 3.0.0-preview3, the Microsoft.Interop.JSRuntime.Current has been removed. Reference link: https://github.com/aspnet/AspNetCore/issues/8117
The name ‘RegisteredFunction’ does not exist in the current context in Blazor.
Solution: ‘RegisteredFunction’ does not exist anymore from Blazor v0.5.0. JavaScript code Blazor code
Object of type ‘Blazor.NetCore.Client.Pages.ChildContent’ does not have a property matching the name ‘ChildContent’.
If the parameter name and component name are same, don’t change the parameter name. Otherwise you will get this error. Change the file and keep the parameter name the same. It will work now.
How do you send an HTTP DELETE request using HttpClient in Blazor?
An HTTP Delete request can be sent to delete a resource from the API server using the DeleteAsync () method provided by the HttpClient class. Razor Web API Reference link: https://medium.freecodecamp.org/how-to-create-an-application-using-blazor-and-entity-framework-core-1c1679d87c7e
How do you pass multiple parameters using cascading values in Blazor by type?
Blazor will look at the type of the EmployeeId and EmployeeName parameters and try to find cascading values that match. In this case, EmployeeId will match Id and EmployeeName will match Name. Parent component Child component