Kros-sk / Kros.KORM

Simple and fast micro-ORM framework for .NET.
MIT License
9 stars 16 forks source link

Support for LongCount method #105

Closed petriq closed 1 year ago

petriq commented 1 year ago

Is your feature request related to a problem? Please describe

When using lib Microsoft.AspNetCore.OData and requesting $count of elements in entity set, the lib requests LongCount on IQueryable. Without LongCount method support the query fails on System.NotSupportedException: The method 'LongCount' is not supported.

MicrosoftTeams-image (1)

Describe the solution you'd like

Add support for LongCount in DefaultQuerySqlGenerator class.