I am getting the following error when using the predicate builder with Entity Framework Core.
The source IQueryable doesn't 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 the exact version of EF I'm using
<package id="EntityFramework.Core" version="7.0.0-rc1-final" targetFramework="net451" />