We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
im trying to call function inside select for get row number this work totally fine on normal linq select like :
db.JsonWebTokens .Select(x=>new { Rank = Microsoft.EntityFrameworkCore.EF.Functions.RowNumber(EF.Functions.Over().OrderBy(x.Id)), x.Id }).ToArray();
but this not working on dynamic linq :
var res = db.JsonWebTokens .Select("x=>new { Microsoft.EntityFrameworkCore.EF.Functions.RowNumber(EF.Functions.Over().OrderBy(x.Id)) as Rank, x.Id }") .ToDynamicArray();
row number from extend library Zomp.EFCore.WindowFunctions.
exception : Enum type 'Microsoft.EntityFrameworkCore.EF.Functions' not found
The text was updated successfully, but these errors were encountered:
Probably related to #772
Sorry, something went wrong.
PR merged, a new NuGet will be released in some time
tnx
StefH
No branches or pull requests
im trying to call function inside select for get row number this work totally fine on normal linq select like :
but this not working on dynamic linq :
row number from extend library Zomp.EFCore.WindowFunctions.
exception : Enum type 'Microsoft.EntityFrameworkCore.EF.Functions' not found
The text was updated successfully, but these errors were encountered: