-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support PostgreSQL-specific aggregate functions (7.0) #727
Comments
We haven't yet looked into supporting PostgreSQL-specific aggregate functions - hopefully the EF Core infrastructure makes that possible. Let's examine this for 3.0. |
Definitely interested in these along with #532. I believe it's currently feasible, but was nontrivial when I scoped it a few months ago. |
ST_AsMVT is a PostGIS aggregate function requested here: #457 (comment) |
Issue tracking the necessary EF Core infrastructure changes: dotnet/efcore#22957 |
Takes care of the built-in aggregates only for now (Min/Max/etc.) Part of npgsql#727
Infrastructure for custom aggregates implemented in #2393; this is the counterpart to dotnet/efcore#28092 on the EF Core side. |
Takes care of the built-in aggregates only for now (Min/Max/etc.) Part of #727
Hello, I'm not sure if it is possible, but it would be great if Npgsql would support more Aggregate Functions, especially when using Group By queries.
Currently only a few of the list at: https://www.postgresql.org/docs/current/functions-aggregate.html are support.
However it would be good if others like
bool_and
orbool_or
will be supported.I'm not sure if it is even possible since I didn't see custom pgsql only aggregate functions (yet), also it might be troublesome to work with
IGrouping<anon type, anon type>
.Work:
The text was updated successfully, but these errors were encountered: