如何使用UserManager [ScopedService]从 Microsoft.AspNetCore.Identity 获取的用户列表
以下是我已经尝试过的:
using System.Linq;
using hostapp.Data;
using hostapp.Models;
using HotChocolate;
using HotChocolate.Data;
using Microsoft.AspNetCore.Identity;
namespace hostapp.GraphQL
{
public class Query
{
// 1.
[UseDbContext(typeof(DataContext))]
public IQueryable<AppUser> Users([ScopedService] UserManager<AppUser> userManager)
{
return (IQueryable<AppUser>)userManager.Users;
}
// 2.
[UseDbContext(typeof(DataContext))]
public async Task<List<AppUser>> Users([ScopedService] UserManager<AppUser> userManager)
{
return await userManager.Users.ToListAsync();
}
}
}输入:
query {
users {
emailConfirmed
}
}输出:
{
"errors": [
{
"message": "Unexpected Execution Error",
"locations": [
{
"line": 2,
"column": 3
}
],
"path": [
"users"
]
}
],
"data": {
"users": null
}
}发布于 2021-04-16 16:34:09
您不需要使用[ScopedService],而需要使用[Service],实际上您甚至只需要在DBContext与UseDbContext结合的情况下使用[ScopedService]。我们将在下一个版本中解决这一困惑。
https://stackoverflow.com/questions/67061320
复制相似问题