BlazorQuery
BlazorQuery copied to clipboard
Just curious
Is this project still relevant?
Now that we can call JQ directly from Blazor with IJSObjectReference .
Example:
JQuery
$('table').DataTable()
Blazor
var jQuery = await JSRuntime.InvokeAsync<IJSObjectReference>("$", "table");
await jQuery.InvokeVoidAsync("DataTable");