From 7a5020f9f1fbd334190cb888f288ed5d3ac9b3b1 Mon Sep 17 00:00:00 2001 From: maliming Date: Thu, 3 Nov 2022 08:28:04 +0800 Subject: [PATCH] Update docs/en/Data-Seeding.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Halil İbrahim Kalkan --- docs/en/Data-Seeding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/Data-Seeding.md b/docs/en/Data-Seeding.md index 1806942c1e..011a5bf37a 100644 --- a/docs/en/Data-Seeding.md +++ b/docs/en/Data-Seeding.md @@ -135,7 +135,7 @@ If a module needs to a parameter, it should be declared on the [module documenta The default seed will be in a unit of work and may use transactions. If there are multiple `IDataSeedContributor` or too much data written, it may cause a database timeout error. -We provide an extension method of `SeedInSeparateUowAsync` to create a separate unit of work for each `IDataSeedContributor`. +We provide an extension method of `SeedInSeparateUowAsync` for the `IDataSeeder` service to create a separate unit of work for each `IDataSeedContributor`. ````csharp public static Task SeedInSeparateUowAsync(this IDataSeeder seeder, Guid? tenantId = null, AbpUnitOfWorkOptions options = null, bool requiresNew = false)