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
IMPROVED: The fix added in v4.0.75 (See the bold part). If the return type is a List<T> but the return of the expression is not a list but another type such as IEnumerable<T>, we will now convert automatically to a List<T> instead of throwing an error. But the list will only use a ToList if not already a list, otherwise a cast will be done
FIXED: Issue with Xamarin platform caused by the DynamicAnonyousType initialization. The issue still exists, however will only happen when really using Anonymous Type and not by default.
ADDED: If the return type is a List<T> but the return of the expression is not a list but another type such as IEnumerable<T>, we will now convert automatically to a List<T> instead of throwing an error.