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
When using this library and attempting a ToListAsync, we get the following error:
System.InvalidOperationException: 'The source IQueryable doesn't implement IDbAsyncEnumerable<System.String>. Only sources that implement IDbAsyncEnumerable can be used for Entity Framework asynchronous operations.
I'm certain this is just an implementation issue where we simply need to wrapper the existing methods in the expected manner, unfortunately, I'm not very familiar with Function Expressions. If someone can point me to an example, I'd be happy to do the implementation work.
The text was updated successfully, but these errors were encountered:
I have the same strange issues. I use this library in different (but very similar) projects and only in one of them I get this exception.
I always use async methods like ToListAsync in all projects.
Any idea?
When using this library and attempting a ToListAsync, we get the following error:
System.InvalidOperationException: 'The source IQueryable doesn't implement IDbAsyncEnumerable<System.String>. Only sources that implement IDbAsyncEnumerable can be used for Entity Framework asynchronous operations.
I'm certain this is just an implementation issue where we simply need to wrapper the existing methods in the expected manner, unfortunately, I'm not very familiar with Function Expressions. If someone can point me to an example, I'd be happy to do the implementation work.
The text was updated successfully, but these errors were encountered: