From 4e4005f7ed1c16cb0d929760bf93c4df69883696 Mon Sep 17 00:00:00 2001 From: Jakob Dybdahl Date: Mon, 19 Sep 2022 19:36:55 +0200 Subject: [PATCH] Fix wrong name of constructor in example --- 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)