I get the following error when using the predicate builder with the Entity Framework Core.
The IQueryable source does not implement IAsyncEnumerable. Only sources that implement IAsyncEnumerable can be used for Entity Framework asynchronous operations.
This is the code -
List<Member> results = await _context.Members.AsExpandable().Where(predicate).ToListAsync();
This is the exact version of EF in which I use
<package id="EntityFramework.Core" version="7.0.0-rc1-final" targetFramework="net451" />
Bryan source
share