Skip to content

Commit 0873505

Browse files
Update Orm/Xtensive.Orm/Orm/Rse/ColumnCollection.cs
Co-authored-by: Alexey Kulakov <alexey.kulakov@dataobjects.net>
1 parent c807b6e commit 0873505

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Orm/Xtensive.Orm/Orm/Rse/ColumnCollection.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,9 @@ public ColumnCollection(List<Column> collection)
7777
: base(collection)
7878
{
7979
nameIndex = new Dictionary<string, int>(Count);
80-
for (var index = 0; index < Count; index++)
80+
for (var index = 0; index < Count; index++) {
8181
nameIndex.Add(this[index].Name, index);
82+
}
8283
}
8384
}
8485
}

0 commit comments

Comments
 (0)