From 1d17c4cdb6c5d41780f2110552e852f647c1d8fb Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Tue, 13 Jan 2026 17:55:07 +1100 Subject: [PATCH 1/2] Update LocalDb extension description (#5240) Removed EF Core version range from the LocalDb extension description to generalize its applicability. --- entity-framework/core/extensions/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/core/extensions/index.md b/entity-framework/core/extensions/index.md index 7ef083381e..26cbc8a8ae 100644 --- a/entity-framework/core/extensions/index.md +++ b/entity-framework/core/extensions/index.md @@ -104,7 +104,7 @@ Extends [Verify](https://github.com/VerifyTests/Verify) to allow snapshot testin ### LocalDb -Provides a wrapper around [SQL Server Express LocalDB](/sql/database-engine/configure-windows/sql-server-express-localdb) to simplify running tests against Entity Framework. For EF Core: 3-8. +Provides a wrapper around [SQL Server Express LocalDB](/sql/database-engine/configure-windows/sql-server-express-localdb) to simplify running tests against Entity Framework. [GitHub repository](https://github.com/SimonCropp/LocalDb) | [NuGet](https://www.nuget.org/packages/EfLocalDb) From d044fcc14ecbd6408f0cfb5598516b9445ad8fb7 Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Tue, 13 Jan 2026 18:00:30 +1100 Subject: [PATCH 2/2] Add EntityFramework.OrderBy extension to index (#5241) Introduced EntityFramework.OrderBy to the list of EF Core extensions. This library enables default ordering for queries, supports nested collections, multi-column ordering, and automatic index creation for ordering columns. Links to GitHub and NuGet are provided. --- entity-framework/core/extensions/index.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/entity-framework/core/extensions/index.md b/entity-framework/core/extensions/index.md index 26cbc8a8ae..0aa159d15f 100644 --- a/entity-framework/core/extensions/index.md +++ b/entity-framework/core/extensions/index.md @@ -268,6 +268,12 @@ Persisted computed properties in EF Core that update automatically on save chang [GitHub repository](https://github.com/lucaslorentz/auto-compute) | [NuGet](https://www.nuget.org/packages/LLL.AutoCompute.EFCore) +### EntityFramework.OrderBy + +Applies default ordering to Entity Framework queries based on fluent configuration, ensuring consistent and deterministic query results. Supports nested collections in `.Include()` expressions, multi-column ordering, and automatic database index creation for ordering columns. + +[GitHub repository](https://github.com/SimonCropp/EntityFramework.OrderBy) | [NuGet](https://www.nuget.org/packages/EfOrderBy) + ### EntityFrameworkCore.AuditInterceptor A library that provides seamless auditing capabilities for Entity Framework Core. It automatically tracks entity changes including who made the changes and when they were made. The library integrates with .NET Dependency Injection and supports various auditing scenarios through a simple configuration process. For EF Core: 6-8.