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
Apparently the GroupingTests fail in Windows w/ .NET; they throw exceptions at line 66 of TupleDatumConverterFactory.cs stating that the "object" type does not have a ConvertDatum method. I believe the cause of this is that anonymous types are considered internal, and therefore can't be recognized by the dynamic keyword in this context.
One fix would be to rewrite ReflectedConversion to use reflection, rather than dynamic. I think that might work.
Another fix would be to add non-generic IDatumConverter instances, and the use of dynamic in TupleDatumConverterFactory could be removed. However, this is a large change affecting a lot of code, particularly the complex DataContractDatumConverterFactory.
The text was updated successfully, but these errors were encountered:
Apparently the GroupingTests fail in Windows w/ .NET; they throw exceptions at line 66 of TupleDatumConverterFactory.cs stating that the "object" type does not have a ConvertDatum method. I believe the cause of this is that anonymous types are considered internal, and therefore can't be recognized by the
dynamic
keyword in this context.One fix would be to rewrite ReflectedConversion to use reflection, rather than dynamic. I think that might work.
Another fix would be to add non-generic IDatumConverter instances, and the use of
dynamic
in TupleDatumConverterFactory could be removed. However, this is a large change affecting a lot of code, particularly the complex DataContractDatumConverterFactory.The text was updated successfully, but these errors were encountered: