Skip to content
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

Remove ORDER BY applied to singleton queries #34831

Open
ranma42 opened this issue Oct 5, 2024 · 0 comments
Open

Remove ORDER BY applied to singleton queries #34831

ranma42 opened this issue Oct 5, 2024 · 0 comments

Comments

@ranma42
Copy link
Contributor

ranma42 commented Oct 5, 2024

When a (sub)query results in 0 or 1 elements (First(), Last(), FirstOrDefault(), LastOrDefault(), Take(1), ...), OrderBy/ThenBy has no effect and can be ignored. This can avoid a pushdown and in general more complex queries.

An example that could be improved:

// @nuget: Microsoft.EntityFrameworkCore.Sqlite -Version 8.0.8

using System;
using System.Data;
using System.Linq;
using Microsoft.EntityFrameworkCore;

using var db = new BloggingContext();

var query = (from blogs in db.Blogs
	select (from posts in blogs.Posts select posts).OrderBy(e => e.SortKey).Take(1).OrderBy(e => e.Id).Single().Id);

Console.WriteLine(query.ToQueryString());

public class BloggingContext : DbContext
{
    public DbSet<Blog> Blogs { get; set; }
    public DbSet<Post> Posts { get; set; }

    protected override void OnConfiguring(DbContextOptionsBuilder options)
        => options
            .LogTo(Console.WriteLine, Microsoft.Extensions.Logging.LogLevel.Information)
            .UseSqlite($"Data Source=test.db");
}

public class Blog
{
    public int Id { get; set; }
    public Post[] Posts { get; set; }
}

public class Post
{
    public int Id { get; set; }
    public Blog Blog { get; set; }
    public int SortKey { get; set; }
}

In this case the SQL query is

SELECT (
    SELECT "t"."Id"
    FROM (
        SELECT "p"."Id", "p"."BlogId", "p"."SortKey"
        FROM "Posts" AS "p"
        WHERE "b"."Id" = "p"."BlogId"
        ORDER BY "p"."SortKey"
        LIMIT 1
    ) AS "t"
    ORDER BY "t"."Id"
    LIMIT 1)
FROM "Blogs" AS "b"

but it could simply be

SELECT (
        SELECT "p"."Id"
        FROM "Posts" AS "p"
        WHERE "b"."Id" = "p"."BlogId"
        ORDER BY "p"."SortKey"
        LIMIT 1)
FROM "Blogs" AS "b"

This can combine with #34482 to further simplify queries.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant