Issue - Setting the selected element of a combo box inside a form worked in 2.22.0 and no longer works in 2.23.0
Repo - https://github.com/benhysell/BlazorGridPagingIssue
Steps to Reproduce
Details
This is a contrived example pulled out of a larger application. Almost all of our combo boxes are backed by OData calls. When we 'create or POST' an element the first time we load the form we have the combo box make an OData call to retrieve the top 200 elements. On a subsequent 'edit or PUT', where we have a thing we want to update we first go get the thing we want to work with, and then fill in the comobo box with that element.
In this example application we simulate this load by deciding if a value was passed in or not for the combo box. https://localhost:5001/updateWeather always passes in an 8 to load the 8th element. https://localhost:5001/createWeather does not pass in any value, leaving the form value unbound.
This all worked as expected in 2.22.0, however once we upgraded to 2.23.0 we could no longer set the value of the combo box on load when combined with an OData call.