示例#1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, GraphQLSampleDbContext dbContext)
        {
            app.UseGraphQL <GraphQLSampleSchema>();
            app.UseGraphQLPlayground(new GraphQLPlaygroundOptions());

            dbContext.Seed();
        }
 public AuthorRepository(GraphQLSampleDbContext dbContext)
 {
     _dbContext = dbContext;
 }
示例#3
0
 public ArticleRepository(GraphQLSampleDbContext dbContext)
 {
     _dbContext = dbContext;
 }