From fc65a0ee74f2c3ae7f7d25b57aa6056ac3dc4930 Mon Sep 17 00:00:00 2001 From: Dimitri Troncquo Date: Fri, 28 Sep 2018 14:03:11 +0200 Subject: [PATCH] fix row created event --- Data.Dump.Engine/Schema/DataSetFactory.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Data.Dump.Engine/Schema/DataSetFactory.cs b/Data.Dump.Engine/Schema/DataSetFactory.cs index 552edb8..28195ec 100644 --- a/Data.Dump.Engine/Schema/DataSetFactory.cs +++ b/Data.Dump.Engine/Schema/DataSetFactory.cs @@ -143,6 +143,11 @@ ref rowCreated } } + if (rowCreated != null) + { + RowCreated -= rowCreated; + } + yield return tables.Values; } }