@@ -20,11 +20,10 @@ public interface IPlanTargetTypeAndRuleSetSelector<TSource>
2020 /// </summary>
2121 /// <typeparam name="TResult">The type of object for which to create the mapping plan.</typeparam>
2222 /// <returns>
23- /// A <see cref="MappingPlan{TSource,TTarget}"/> object detailing the function to be executed
24- /// during a mapping. To see a string representation of the function assign the result to a string
25- /// variable, or call .ToString().
23+ /// A <see cref="MappingPlan"/> object detailing the function to be executed during a mapping. To see
24+ /// a string representation of the function assign the result to a string variable, or call .ToString().
2625 /// </returns>
27- MappingPlan < TSource , TResult > ToANew < TResult > ( ) ;
26+ MappingPlan ToANew < TResult > ( ) ;
2827
2928 /// <summary>
3029 /// Create and compile mapping functions for a create new mapping from the source type being
@@ -36,11 +35,10 @@ public interface IPlanTargetTypeAndRuleSetSelector<TSource>
3635 /// <paramref name="configurations"/> with any configuration already set up via the Mapper.WhenMapping API.
3736 /// </param>
3837 /// <returns>
39- /// A <see cref="MappingPlan{TSource,TTarget}"/> object detailing the function to be executed
40- /// during a mapping. To see a string representation of the function assign the result to a string
41- /// variable, or call .ToString().
38+ /// A <see cref="MappingPlan"/> object detailing the function to be executed during a mapping. To see
39+ /// a string representation of the function assign the result to a string variable, or call .ToString().
4240 /// </returns>
43- MappingPlan < TSource , TResult > ToANew < TResult > (
41+ MappingPlan ToANew < TResult > (
4442 params Expression < Action < IFullMappingInlineConfigurator < TSource , TResult > > > [ ] configurations ) ;
4543
4644 /// <summary>
@@ -49,11 +47,10 @@ MappingPlan<TSource, TResult> ToANew<TResult>(
4947 /// </summary>
5048 /// <typeparam name="TTarget">The type of object for which to create the mapping plan.</typeparam>
5149 /// <returns>
52- /// A <see cref="MappingPlan{TSource,TTarget}"/> detailing the function to be executed during a mapping.
53- /// To see a string representation of the function, assign the result to an explitly-typed string variable,
54- /// or call .ToString().
50+ /// A <see cref="MappingPlan"/> object detailing the function to be executed during a mapping. To see
51+ /// a string representation of the function assign the result to a string variable, or call .ToString().
5552 /// </returns>
56- MappingPlan < TSource , TTarget > OnTo < TTarget > ( ) ;
53+ MappingPlan OnTo < TTarget > ( ) ;
5754
5855 /// <summary>
5956 /// Create and compile mapping functions for an OnTo (merge) mapping from the source type being
@@ -65,11 +62,10 @@ MappingPlan<TSource, TResult> ToANew<TResult>(
6562 /// <paramref name="configurations"/> with any configuration already set up via the Mapper.WhenMapping API.
6663 /// </param>
6764 /// <returns>
68- /// A <see cref="MappingPlan{TSource,TTarget}"/> detailing the function to be executed during a mapping.
69- /// To see a string representation of the function, assign the result to an explitly-typed string variable,
70- /// or call .ToString().
65+ /// A <see cref="MappingPlan"/> object detailing the function to be executed during a mapping. To see
66+ /// a string representation of the function assign the result to a string variable, or call .ToString().
7167 /// </returns>
72- MappingPlan < TSource , TTarget > OnTo < TTarget > (
68+ MappingPlan OnTo < TTarget > (
7369 params Expression < Action < IFullMappingInlineConfigurator < TSource , TTarget > > > [ ] configurations ) ;
7470
7571 /// <summary>
@@ -78,11 +74,10 @@ MappingPlan<TSource, TTarget> OnTo<TTarget>(
7874 /// </summary>
7975 /// <typeparam name="TTarget">The type of object for which to create the mapping plan.</typeparam>
8076 /// <returns>
81- /// A <see cref="MappingPlan{TSource,TTarget}"/> detailing the function to be executed during a mapping.
82- /// To see a string representation of the function, assign the result to an explitly-typed string variable,
83- /// or call .ToString().
77+ /// A <see cref="MappingPlan"/> object detailing the function to be executed during a mapping. To see
78+ /// a string representation of the function assign the result to a string variable, or call .ToString().
8479 /// </returns>
85- MappingPlan < TSource , TTarget > Over < TTarget > ( ) ;
80+ MappingPlan Over < TTarget > ( ) ;
8681
8782 /// <summary>
8883 /// Create and compile mapping functions for an Over (overwrite) mapping from the source type being
@@ -94,11 +89,10 @@ MappingPlan<TSource, TTarget> OnTo<TTarget>(
9489 /// <paramref name="configurations"/> with any configuration already set up via the Mapper.WhenMapping API.
9590 /// </param>
9691 /// <returns>
97- /// A <see cref="MappingPlan{TSource,TTarget}"/> detailing the function to be executed during a mapping.
98- /// To see a string representation of the function, assign the result to an explitly-typed string variable,
99- /// or call .ToString().
92+ /// A <see cref="MappingPlan"/> object detailing the function to be executed during a mapping. To see
93+ /// a string representation of the function assign the result to a string variable, or call .ToString().
10094 /// </returns>
101- MappingPlan < TSource , TTarget > Over < TTarget > (
95+ MappingPlan Over < TTarget > (
10296 params Expression < Action < IFullMappingInlineConfigurator < TSource , TTarget > > > [ ] configurations ) ;
10397 }
10498}
0 commit comments