Filtering on Include in EF Core

Entity Framework core 5 is the first EF version to support filtered Include. How it works Supported operations: Where OrderBy(Descending)/ThenBy(Descending) Skip Take Some usage examples (from the original feature request and the github commmit) : Only one filter allowed per navigation, so for cases where the same navigation needs to be included multiple times (e.g. … Read more