My main codebase operate IAsyncQueryable
, but I have obsolete parts of code / consumed API which has no ability to provide IAsyncQueryable
, however provides IQueryable
. What I miss is IAsyncqueryable ToAsyncQueryable(this IQueryable queryable)
method to convert it (yes, it would be sub-optimal, that's okay until no conversion to IEnumerable
).
Is any standard approach to deal with it or possibly someone has implementation of such method (I did not find)