@@ -188,15 +188,15 @@ public static IServiceCollection AddHandlebarsBlockHelpers(this IServiceCollecti
188188 /// </para>
189189 /// </summary>
190190 /// <param name="services"> The <see cref="IServiceCollection" /> to add services to. </param>
191- /// <param name="entityNameTransformer ">Entity name transformer.</param>
191+ /// <param name="entityTypeNameTransformer ">Entity name transformer.</param>
192192 /// <param name="entityFileNameTransformer">Entity file name transformer.</param>
193193 /// <param name="constructorTransformer"></param>
194194 /// <param name="propertyTransformer">Property name transformer.</param>
195195 /// <param name="navPropertyTransformer">Navigation property name transformer.</param>
196196 /// <param name="contextFileNameTransformer">Context file name transformer.</param>
197197 /// <returns>The same service collection so that multiple calls can be chained.</returns>
198198 public static IServiceCollection AddHandlebarsTransformers ( this IServiceCollection services ,
199- Func < string , string > entityNameTransformer = null ,
199+ Func < string , string > entityTypeNameTransformer = null ,
200200 Func < string , string > entityFileNameTransformer = null ,
201201 Func < EntityPropertyInfo , EntityPropertyInfo > constructorTransformer = null ,
202202 Func < EntityPropertyInfo , EntityPropertyInfo > propertyTransformer = null ,
@@ -205,7 +205,7 @@ public static IServiceCollection AddHandlebarsTransformers(this IServiceCollecti
205205 {
206206 services . AddSingleton < IEntityTypeTransformationService > ( provider =>
207207 new HbsEntityTypeTransformationService (
208- entityNameTransformer ,
208+ entityTypeNameTransformer ,
209209 entityFileNameTransformer ,
210210 constructorTransformer ,
211211 propertyTransformer ,
@@ -223,15 +223,15 @@ public static IServiceCollection AddHandlebarsTransformers(this IServiceCollecti
223223 /// </para>
224224 /// </summary>
225225 /// <param name="services"> The <see cref="IServiceCollection" /> to add services to. </param>
226- /// <param name="entityNameTransformer ">Entity name transformer.</param>
226+ /// <param name="entityTypeNameTransformer ">Entity name transformer.</param>
227227 /// <param name="entityFileNameTransformer">Entity file name transformer.</param>
228228 /// <param name="constructorTransformer"></param>
229229 /// <param name="propertyTransformer">Property name transformer.</param>
230230 /// <param name="navPropertyTransformer">Navigation property name transformer.</param>
231231 /// <param name="contextFileNameTransformer">Context file name transformer.</param>
232232 /// <returns>The same service collection so that multiple calls can be chained.</returns>
233233 public static IServiceCollection AddHandlebarsTransformers ( this IServiceCollection services ,
234- Func < string , string > entityNameTransformer = null ,
234+ Func < string , string > entityTypeNameTransformer = null ,
235235 Func < string , string > entityFileNameTransformer = null ,
236236 Func < IEntityType , EntityPropertyInfo , EntityPropertyInfo > constructorTransformer = null ,
237237 Func < IEntityType , EntityPropertyInfo , EntityPropertyInfo > propertyTransformer = null ,
@@ -240,7 +240,7 @@ public static IServiceCollection AddHandlebarsTransformers(this IServiceCollecti
240240 {
241241 services . AddSingleton < IEntityTypeTransformationService > ( provider =>
242242 new HbsEntityTypeTransformationService2 (
243- entityNameTransformer ,
243+ entityTypeNameTransformer ,
244244 entityFileNameTransformer ,
245245 constructorTransformer ,
246246 propertyTransformer ,
0 commit comments