EntityFramework-Plus
EntityFramework-Plus copied to clipboard
Query types supported?
I was wondering if the new EF Core 2.1 Query Types feature is supported.
I tried to this:
public partial class MyContext
{
public void SetFilters(long tenantId)
{
this.Filter<MyView>(q => q.Where(x => x.TenantId == tenantId));
}
}
But the filter wasn't applied to the resulting query.