You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way I can use window functions (like rank and similar) within EF Core with Npgsql?
If now, could we provide a translation for the common problem known as "greatest-n-per-group".
@shoooe EF Core already generates window functions for some LINQ queries, e.g. see dotnet/efcore#17936, and for others it generates CROSS APPLY (or lateral joins for PostgreSQL). dotnet/efcore#12747 already tracks this on the EF Core side, so am going to close this as a duplicate of that.
Is there any way I can use window functions (like
rank
and similar) within EF Core with Npgsql?If now, could we provide a translation for the common problem known as "greatest-n-per-group".
That's solved efficiently with window functions.
Thanks
The text was updated successfully, but these errors were encountered: