Lambda expressions are supported as the delegate event handler.
See the example:
<h1>@heading</h1>
<button @onclick="@(e => heading = "New heading!!!")">
Update heading
</button>
Refer the sample in the link: https://learn.microsoft.com/en-us/aspnet/core/blazor/components/event-handling?view=aspnetcore-7.0#lambda-expressions
Hope this helps