我是否误解了 HotChocolate 中的投影?

Am I misunderstanding Projections in HotChocolate?

我似乎无法使用 HotChocolate 为 GraphQl 工作。根据文档,预测应该防止从数据库过度请求数据,并帮助连接相关表中的数据。作为一个简单的例子,我设置了以下内容:

public class Name
{
    [Key]
    public Guid Id { get; set; } = Guid.NewGuid();
    public string FirstName { get; set; }
    public string LastName { get; set; }
}


public class Queries
{
    [UseProjection]
    [UseDbContext(typeof(DbAccess))]
    public IQueryable<Name> GetNames([ScopedService] DbAccess db)
    {
        return db.Names;
    }
}

public class NameType : ObjectType<Name>
{ }

在Startup.ConfigureServices中:

        services.AddGraphQLServer()
            .AddType<NameType>()
            .AddQueryType<Queries>()
            .AddProjections();

因此,通过此设置,我 运行 Graphql 查询如下: {名字{firstName}}

我希望生成的 sql 类似于

SELECT `n`.`FirstName` FROM `Names` AS `n`

相反,虽然确实如此

SELECT `n`.`Id`, `n`.`FirstName`, `n`.`LastName` FROM `Names` AS `n`

我是否遗漏了一些明显的东西?

编辑版本:

NetCore 5.0
EfCore 5.0.12
HotChocolate 11.0.7
Pomelo.EntityFrameworkCore.MySql 5.0.3

经过反复试验,我的属性标签顺序错误应该是:

public class Queries
{
  [UseDbContext(typeof(DbAccess))]
  [UseProjection]
  public IQueryable<Name> GetNames([ScopedService] DbAccess db)
  {
    return db.Names;
  }
}