Hello,
I tried the ListView control and tried to bind the DataSource to a string array, then it threw a NullReferenceException:
```
Microsoft.AspNetCore.Components.WebAssembly.Rendering.WebAssemblyRenderer[100]
Unhandled exception rendering component: Object reference not set to an instance of an object.
System.NullReferenceException: Object reference not set to an instance of an object.
at Syncfusion.Blazor.Lists.SfListView`1[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].GetLiElementData(ListElementReference args, Boolean ischecked)
at Syncfusion.Blazor.Lists.SfListView`1[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].GetProperties()
at Syncfusion.Blazor.Lists.SfListView`1.<OnAfterScriptRendered>d__3[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].MoveNext()
at Syncfusion.Blazor.SfBaseComponent.OnAfterRenderAsync(Boolean firstRender)
at Syncfusion.Blazor.Lists.SfListView`1.<OnAfterRenderAsync>d__2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].MoveNext()
at Microsoft.AspNetCore.Components.RenderTree.Renderer.GetErrorHandledTask(Task taskToHandle)
```
I think the issue is related to this post: Filtering with a List of strings and not objects, where the problem is due to the lack of support to List<string> as the data source.
Therefore, I'd like to request support data binding to string array(IEnumerable<string>).
Looking forward to your reply.
Xi