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
while executing search query there is an EF warning:
Microsoft.EntityFrameworkCore.Query:Warning: The LINQ expression 'GroupBy([p].Id, [p])' could not be translated and will be evaluated locally.
then I see multiple queries to DB one per groupping result
SELECT "p"."Key", "p"."Authors", "p"."Description", "p"."Downloads", "p"."HasReadme", "p"."IconUrl", "p"."Id", "p"."Language", "p"."LicenseUrl", "p"."Listed", "p"."MinClientVersion", "p"."ProjectUrl", "p"."Published", "p"."RepositoryType", "p"."RepositoryUrl", "p"."RequireLicenseAcceptance", "p"."RowVersion", "p"."Summary", "p"."Tags", "p"."Title", "p"."Version"
FROM "Packages" AS "p"
WHERE "p"."Id" IN (
SELECT DISTINCT "p2"."Id"
FROM "Packages" AS "p2"
ORDER BY "p2"."Id"
LIMIT @__take_1 OFFSET @__skip_0
)
ORDER BY "p"."Id"
The text was updated successfully, but these errors were encountered:
ku3mich
added a commit
to ku3mich/BaGet
that referenced
this issue
Dec 8, 2018
while executing search query there is an EF warning:
Microsoft.EntityFrameworkCore.Query:Warning: The LINQ expression 'GroupBy([p].Id, [p])' could not be translated and will be evaluated locally.
then I see multiple queries to DB one per groupping result
SELECT "p"."Key", "p"."Authors", "p"."Description", "p"."Downloads", "p"."HasReadme", "p"."IconUrl", "p"."Id", "p"."Language", "p"."LicenseUrl", "p"."Listed", "p"."MinClientVersion", "p"."ProjectUrl", "p"."Published", "p"."RepositoryType", "p"."RepositoryUrl", "p"."RequireLicenseAcceptance", "p"."RowVersion", "p"."Summary", "p"."Tags", "p"."Title", "p"."Version"
FROM "Packages" AS "p"
WHERE "p"."Id" IN (
SELECT DISTINCT "p2"."Id"
FROM "Packages" AS "p2"
ORDER BY "p2"."Id"
LIMIT @__take_1 OFFSET @__skip_0
)
ORDER BY "p"."Id"
The text was updated successfully, but these errors were encountered: