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
The text representation of the value of the current Nullable object if the HasValue property is true, or an empty string ("") if the HasValue property is false.
EFCore is attempting to test that the translation matches the C# definition in ToString_boolean_property_nullable, but it does so without ever populating the column with NULL
EFCore returns NULL for NULLs in bool?columns in SQL Server and Sqlite
What is the intended translation for
Nullable<T>.ToString()?It is currently unclear (at least to me) what is the intended result (and/or translation) because:
ToString_boolean_property_nullable, but it does so without ever populating the column withNULLNULLforNULLs inbool?columns in SQL Server and Sqlite"True"string forNULLin otherbool?expressionsreported as Inconsistent results for
Nullable<bool>.ToString()#33941""for enumsNULL) for several types in SQL Server and SqliteI realized that the situation was unclear while working on #33940