From 35afdcf9302872c4bf15d7aa9c4a2758b951811f Mon Sep 17 00:00:00 2001 From: zhdusurfin Date: Wed, 11 Oct 2017 10:03:41 +0300 Subject: [PATCH] NullRefenceException at GetResultSets. --- Source/Mapping/MappingSchema.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Mapping/MappingSchema.cs b/Source/Mapping/MappingSchema.cs index dcc743c33..12c2dc573 100644 --- a/Source/Mapping/MappingSchema.cs +++ b/Source/Mapping/MappingSchema.cs @@ -3883,7 +3883,7 @@ private static int GetResultSets( master.AddRelation(output[current], nr.SlaveIndex, nr.MasterIndex, nr.ContainerName); - current += GetResultSets(current + 1, output, output[current], nr.NextResults); + current = GetResultSets(current + 1, output, output[current], nr.NextResults); } return current;