Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding support for multiple and named query filters #35104

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

bittola
Copy link

@bittola bittola commented Nov 14, 2024

  • I've read the guidelines for contributing and seen the walkthrough

  • The code builds and tests pass locally (also verified by our automated build checks)

  • Tests for the changes have been added (for bug fixes / features)

  • Code follows the same patterns and style as existing code in this repo

Closes #8576

This PR adds support for defining multiple named global query filters on an entity.
It follows pattern used for keyed services in ASP.NET Core dependency injection.
It's backward compatible with the existing implementation where only single unnamed filter was possible.

Examples:

protected override void OnModelCreating(ModelBuilder modelBuilder)
    => modelBuilder.Entity<MyEntity>()
        .HasQueryFilter(x => !_ids.Contains(x.Id))
        .HasQueryFilter("NameFilter", x => x.Name.StartsWith("Name"))
        .HasQueryFilter(GlobalFilters.Active, x => !x.IsDeleted)
        .HasQueryFilter(GlobalFilters.Published, x => !x.IsDraft);

public enum GlobalFilters
{
    Active,
    Published
}

The example above shows the basic usage of the feature. As you can see we can use a value of any type as a filter key. In our example it was string and enum values. If the filter key is not defined as it is in HasQueryFilter(x => !_ids.Contains(x.Id)), string.Empty is used under the hood. It can be later used to disable that anonymous filter.

var result = context.Entities
    .IgnoreQueryFilters(GlobalFilters.Active, "NameFilter")
    .IgnoreQueryFilters(string.Empty)
    .ToList();

This example shows how to ignore specific query filters by using their keys. To simplify the use we can use an overload allowing us to specify filters keys as params array. Sequential use of the method adds new keys to the ignored list. Note, that the string.Empty key disables the anonymous filter from the previous example.

If we want to ignore all filters at once we can do it be calling IgnoreQueryFilters overload with no parameters:

var result = context.Entities
    .IgnoreQueryFilters()
    .ToList();

@bittola bittola requested a review from a team as a code owner November 14, 2024 07:46
@bittola
Copy link
Author

bittola commented Nov 14, 2024

@dotnet-policy-service agree

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Named query filters
1 participant