Dixin / EntityFramework.Functions

EntityFramework.Functions library implements Entity Framework code first support for stored procedures (with single result type, multiple result types, output parameter), table-valued functions (returning entity type, complex type), scalar-valued functions (composable, non-composable), aggregate functions, built-in functions, niladic functions, and model defined functions.
https://weblogs.asp.net/Dixin/EntityFramework.Functions
MIT License
79 stars 27 forks source link

Support aggregate functions with more then one argument #40

Open stowellt opened 4 years ago

stowellt commented 4 years ago

Hi,

Entity Framework v6.3.0 has support for aggregate functions with more then one argument. Could Function.DbModel.cs be updated to support that?

kemsky commented 1 year ago

@stowellt, did you try that yourself? I tried to implement STRING_AGG but it fails inside ef6 telling that argument count is not correct.

See https://github.com/dotnet/ef6/issues/2090