From 6ef1a58fc480f77faafb8b36c2e09ab4ef95bde4 Mon Sep 17 00:00:00 2001 From: Jakob Dybdahl Date: Tue, 20 Sep 2022 23:46:55 +0200 Subject: [PATCH] Fixed wrong name of constructor in example (#5411) --- website/src/docs/hotchocolate/integrations/entity-framework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/docs/hotchocolate/integrations/entity-framework.md b/website/src/docs/hotchocolate/integrations/entity-framework.md index d5c3e7665b5..88f676f6da4 100644 --- a/website/src/docs/hotchocolate/integrations/entity-framework.md +++ b/website/src/docs/hotchocolate/integrations/entity-framework.md @@ -149,7 +149,7 @@ public class FooByIdDataLoader : BatchDataLoader { private readonly IDbContextFactory _dbContextFactory; - public UserByIdDataLoader( + public FooByIdDataLoader( IDbContextFactory dbContextFactory, IBatchScheduler batchScheduler, DataLoaderOptions options) : base(batchScheduler, options)