Example:
// pseudocode
List<T> list = new List() { ... };
_context.Set<T>().Where(i => list.Contains(t => /*predicate*/));
For this I get a warning that this query will be evaluted localy.
What solution for queries like that?
How correctly create Expression for Where clause?
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.1.4" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.1.2" />
</ItemGroup>