File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
Orm/Xtensive.Orm/Tuples/Transform Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,15 @@ public IReadOnlyList<int> SingleSourceMap {
56
56
get => singleSourceMap ;
57
57
}
58
58
59
+ /// <summary>
60
+ /// Gets or sets destination-to-source field map.
61
+ /// </summary>
62
+ public IReadOnlyList < Pair < int , int > > Map
63
+ {
64
+ [ DebuggerStepThrough ]
65
+ get { return Array . AsReadOnly ( map ) ; }
66
+ }
67
+
59
68
protected void SetSingleSourceMap ( IReadOnlyList < int > singleSourceMap )
60
69
{
61
70
ArgumentValidator . EnsureArgumentNotNull ( singleSourceMap , nameof ( singleSourceMap ) ) ;
@@ -73,14 +82,6 @@ protected void SetSingleSourceMap(IReadOnlyList<int> singleSourceMap)
73
82
sourceCount = 1 ;
74
83
}
75
84
76
- /// <summary>
77
- /// Gets or sets destination-to-source field map.
78
- /// </summary>
79
- public IReadOnlyList < Pair < int , int > > Map {
80
- [ DebuggerStepThrough ]
81
- get { return Array . AsReadOnly ( map ) ; }
82
- }
83
-
84
85
protected void SetMap ( Pair < int , int > [ ] map )
85
86
{
86
87
ArgumentValidator . EnsureArgumentNotNull ( map , nameof ( map ) ) ;
You can’t perform that action at this time.
0 commit comments