Using the 9.3.1 Autocomplete with TValue and TItem crashes when having a certain amount of data. Typing a search with only 6 items in Data works but having 331 items crashes using the same DataGrid and Autocomplete.
On 9.2 it worked like a charm with "huge" data.



Can you provide us with a sample project to reproduce the issue?
Also, are you using latest 0.9.3-preview3.1?
Yes I am using the latest preview 3.1.
Unfortunately this it not possible since it has confidential data. But let me have a look into this if it is possibel for me to create a sample projec with the same error.
I'm aware you can't post a real project. We just need a small fully working project with the error to reproduce.
Yes I am doing that right now.
Can it be because not every item in the grid has a value in the description? Because every other column works and has a value for each item.
Edit: nope thats not the issue still searching.
After further testing, it does seem to be the issue.
Can be fixed by changing this:
TextField="@((item)=>item.Name.ToString())"
ValueField="@((item)=>item.Name)"
to this
TextField="@((item)=>item.Name.ToString() ?? "")"
ValueField="@((item)=>item.Name ?? "")"