gpt4 book ai didi

c# - 我可以在没有 Entity Framework 的情况下使用 graphql-dotnet 吗?

转载 作者:行者123 更新时间:2023-12-04 02:33:05 24 4
gpt4 key购买 nike

我可以在没有 Entity Framework 的情况下使用 graphql-dotnet 吗?

我目前正在查看此存储库 https://github.com/mmacneil/fullstack-jobs ,并注意到它正在使用 EF。在互联网上到处寻找示例,我只能找到使用 EF 的 graphql-dotnet 实现。

我想在 EF 不适合的现有数据库结构中使用 graphql-dotnet。直接编写 SQL 是我希望应用程序工作的方式。有没有人有任何例子?

我不明白 graphql-dotnet 如何与我链接的存储库中的数据库联系在一起

最佳答案

您可以在没有 EF 的情况下使用 GraphQL。我对您的 github 链接和我发现的内容进行了一些调查。

首先你应该检查这些接口(interface):

IRepository

public interface IRepository<T>
{
Task<T> GetById(int id);
Task<List<T>> ListAll();
Task<T> GetSingleBySpec(ISpecification<T> spec);
Task<List<T>> List(ISpecification<T> spec);
Task<T> Add(T entity);
Task Update(T entity);
Task Delete(T entity);
}

IJobRepository

public interface IJobRepository : IRepository<Job>
{
}

这些接口(interface)(大部分只有 IRepository)定义了如何使用数据库的契约。接下来你需要检查这些类: EfRepository我省略了一些实现细节,因为它们对于理解并不重要

    public abstract class EfRepository<T> : IRepository<T> where T : class
{
protected readonly AppDbContext _appDbContext;

protected EfRepository(AppDbContext appDbContext)
{
_appDbContext = appDbContext;
}

public virtual async Task<T> GetById(int id)
{
return await _appDbContext.Set<T>().FindAsync(id);
}

public async Task<List<T>> ListAll()
{
return await _appDbContext.Set<T>().ToListAsync();
}

public async Task<T> GetSingleBySpec(ISpecification<T> spec)
{
//implementation omitted
}

public async Task<List<T>> List(ISpecification<T> spec)
{
//implementation omitted
}

public async Task<T> Add(T entity)
{
//implementation omitted
}

public async Task Update(T entity)
{
//implementation omitted
}

public async Task Delete(T entity)
{
//implementation omitted
}
}

JobRepository

 public sealed class JobRepository : EfRepository<Job>, IJobRepository
{
public JobRepository(AppDbContext appDbContext) : base(appDbContext)
{
}
}

这些类包含上述接口(interface)的实现,EfRepository 包含与数据库一起工作的所有代码。在这种情况下,我们有 EF,但可以使用任何你想要的东西,任何数据库或集合等等。

所以接下来我们需要的是ContextServiceLocator (如果更准确地说,我们需要 JobRepository 字段)

public class ContextServiceLocator
{
public IJobRepository JobRepository => _httpContextAccessor.HttpContext.RequestServices.GetRequiredService<IJobRepository>();

public IHumanizer Humanizer => _httpContextAccessor.HttpContext.RequestServices.GetRequiredService<IHumanizer>();

private readonly IHttpContextAccessor _httpContextAccessor;

public ContextServiceLocator(IHttpContextAccessor httpContextAccessor)
{
_httpContextAccessor = httpContextAccessor;
}
}

最后但并非最不重要的是 FullStackJobsQuery

public class FullStackJobsQuery : ObjectGraphType
{
public FullStackJobsQuery(ContextServiceLocator contextServiceLocator)
{
FieldAsync<JobType>("job",
arguments: new QueryArguments(new QueryArgument<IntGraphType> { Name = "id" }),
resolve: async context => await contextServiceLocator.JobRepository.GetSingleBySpec(new JobSpecification(j => j.Id == context.GetArgument<int>("id", default))));

FieldAsync<ListGraphType<JobSummaryType>>("employerJobs",
resolve: async context =>
{
// Extract the user id from the name claim to fetch the target employer's jobs
var jobs = await contextServiceLocator.JobRepository.List(new JobSpecification(j => j.Employer.Id == context.GetUserId()));
return jobs.OrderByDescending(j => j.Modified);
});

FieldAsync<ListGraphType<JobSummaryType>>("publicJobs",
resolve: async context =>
{
// Fetch published Jobs from all employers
var jobs = await contextServiceLocator.JobRepository.List(new JobSpecification(j => j.Status == Status.Published));
return jobs.OrderByDescending(j => j.Modified);
});
}
}

在本类(class)中,您可以了解如何使用 contextServiceLocator.JobRepository 来解析 graphql 字段。

关于c# - 我可以在没有 Entity Framework 的情况下使用 graphql-dotnet 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63065328/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com