EntityFramework-Plus icon indicating copy to clipboard operation
EntityFramework-Plus copied to clipboard

Query types supported?

Open dario-hd opened this issue 7 years ago • 0 comments

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.

dario-hd avatar Aug 07 '18 15:08 dario-hd