Problem with RowClick propierty

Good afternoon.

Ia have uploaded to Radzen5 my project, and I have a problem tan I cant solve. It was changing RadzenGrid to RadzenDataGrid, and in the propierty RowClick, it a shows an error that it says "it can not convert to methods groups to Microsoft.AspNetCore.Components.EventCallaBack". And the method thai I call from RowClick it be declared like:

 private async Task rowClick(DataGridCellMouseEventArgs<Dom_Registro> dom_registroArgs)
{}

In the similar propierties on RadzenDataGrid, tha uses EvencallBack method too, like RowSelect or RowExpand, I have declared the method the same form, and I haven´t any error with this attributes...I don´t find any sense tha it be happend. please any help is be apprecciated.

best regards.

Your method signature is incorrect - the event arguments type should be DataGridRowMouseEventArgs<T>.

Yes! now is running well!

Millions of thanks!!