You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 14, 2018. It is now read-only.
current code ignores null values in a collection. this means a SelectListItem with Value = string.Empty or (for tag helpers) an <option value="">Some text</option> element will not match and they should. (problem occurs because defaultValues.OfType<object>() is not the correct translation of from object value in defaultValues)
if generated <option/>s use enum names, they will never match int values found in ViewData (decimal values may match but that'll be ignored)