Simply put I want to add more rows to the table. I have recreated my issue here: https://try.mudblazor.com/snippet/GkQdvvwjdZHabpkB
I also have a textbox which allows the user to apply a filter to the data. E.g. When "Harry" is entered then only rows where the Name contains "Harry" should be returned.
IEnumerable does not allow record manipulation (add, remove).
You need to change the type from IEnumerable to IList.