EntityFrameworkCore.UseRowNumberForPaging icon indicating copy to clipboard operation
EntityFrameworkCore.UseRowNumberForPaging copied to clipboard

Support for EF 10 / dotnet 10

Open tavo2047 opened this issue 2 months ago • 0 comments

When using this package in a project targeting .NET 10 and EF Core 10, a System.MissingMethodException is thrown at runtime during query execution.

The exception indicates that the package is trying to call a constructor for Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFragmentExpression that only takes a System.String. It appears this constructor signature has been removed or changed in EF Core 10, causing a breaking change.

This prevents any LINQ query that utilizes this package's features from running.

tavo2047 avatar Nov 13 '25 17:11 tavo2047