QueryKit
QueryKit copied to clipboard
🎛️ QueryKit is a .NET library that makes it easier to query your data by providing a fluent and intuitive syntax for filtering and sorting.
Bumps [Bogus](https://github.com/bchavez/Bogus) from 35.4.0 to 35.6.1. Release notes Sourced from Bogus's releases. Release v35.6.1 build 1448 CHANGE LOG Release v35.6.0 build 1443 CHANGE LOG Release v35.5.1 build 1436 CHANGE LOG...
Bumps [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 6.12.0 to 6.12.1. Release notes Sourced from FluentAssertions's releases. 6.12.1 What's Changed Improvements Improve BeEmpty() and BeNullOrEmpty() performance for IEnumerable<T>, by materializing only the first item -...
Bumps [MediatR](https://github.com/jbogard/MediatR) from 12.3.0 to 12.4.1. Release notes Sourced from MediatR's releases. v12.4.1 What's Changed Make Auto Registration of Generic Handlers OPT-IN by @zachpainter77 in jbogard/MediatR#1057 Full Changelog: https://github.com/jbogard/MediatR/compare/v12.4.0...v12.4.1 v12.4.0...
Bumps the xunit group with 2 updates in the / directory: [xunit](https://github.com/xunit/xunit) and [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit). Updates `xunit` from 2.6.6 to 2.9.2 Commits 82543a6 v2.9.2 0f8f156 #3031: Changes to TheoryData break tests...
Bumps [Npgsql.EntityFrameworkCore.PostgreSQL](https://github.com/npgsql/efcore.pg), [Microsoft.EntityFrameworkCore](https://github.com/dotnet/efcore) and [Microsoft.EntityFrameworkCore.Relational](https://github.com/dotnet/efcore). These dependencies needed to be updated together. Updates `Npgsql.EntityFrameworkCore.PostgreSQL` from 8.0.0 to 8.0.8 Release notes Sourced from Npgsql.EntityFrameworkCore.PostgreSQL's releases. v8.0.2 This is the first patch...
Bumps the testcontainers group with 2 updates: [Testcontainers](https://github.com/testcontainers/testcontainers-dotnet) and [Testcontainers.PostgreSql](https://github.com/testcontainers/testcontainers-dotnet). Updates `Testcontainers` from 3.9.0 to 3.10.0 Release notes Sourced from Testcontainers's releases. 3.10.0 Hey everyone, just wanted to say a...
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to...
Hey, I have a suggestion for a feature that could be nice to have in some cases. The idea behind it is that you can filter on two properties at...
Hello, thank you for your fine work. I would like to also be able to do basic arithmetic like so: ``` ApplyQueryKitFilter("(Price - Cost) > 300") ```
something like one of the below should work ``` config.DerivedProperty(x => x.UserProfile.FirstName + " " + x.UserProfile.LastName).HasQueryName("name"); // or config.DerivedProperty(x => x.FirstName + " " + x.LastName).HasQueryName("name"); ``` but fails...