redodin2

Results 1 comments of redodin2

Looks like an extension method lost the context. However, you can use query syntax ```cs public static IEnumerable WhereNotNull(this IEnumerable that) where T : class => from item in that...