Skip to content

Commit acb64e9

Browse files
committed
Updated relevant references of follow to include
To correspond with the rename of the `[Follow()]` attribute to `[Include()]` (7c150d8), I reworded references to "follow" to use the "include" nomenclature instead—while being careful to only reword those usages that pertained to mapping associations.
1 parent c16c0a8 commit acb64e9

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

OnTopic/Mapping/ITopicMappingService.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public interface ITopicMappingService {
3838
/// </para>
3939
/// </remarks>
4040
/// <param name="topic">The <see cref="Topic"/> entity to derive the data from.</param>
41-
/// <param name="associations">Determines what associations the mapping should follow, if any.</param>
41+
/// <param name="associations">Determines what associations the mapping should include, if any.</param>
4242
/// <returns>An instance of the dynamically determined View Model with properties appropriately mapped.</returns>
4343
Task<object?> MapAsync(Topic? topic, AssociationTypes associations = AssociationTypes.All);
4444

@@ -55,7 +55,7 @@ public interface ITopicMappingService {
5555
/// </para>
5656
/// </remarks>
5757
/// <param name="topic">The <see cref="Topic"/> entity to derive the data from.</param>
58-
/// <param name="associations">Determines what associations the mapping should follow, if any.</param>
58+
/// <param name="associations">Determines what associations the mapping should include, if any.</param>
5959
/// <returns>
6060
/// An instance of the requested View Model <typeparamref name="T"/> with properties appropriately mapped.
6161
/// </returns>
@@ -70,7 +70,7 @@ public interface ITopicMappingService {
7070
/// </summary>
7171
/// <param name="topic">The <see cref="Topic"/> entity to derive the data from.</param>
7272
/// <param name="target">The data transfer object to populate.</param>
73-
/// <param name="associations">Determines what associations the mapping should follow, if any.</param>
73+
/// <param name="associations">Determines what associations the mapping should include, if any.</param>
7474
/// <returns>
7575
/// An instance of the requested View Model instance with properties appropriately mapped.
7676
/// </returns>

OnTopic/Mapping/TopicMappingService.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public TopicMappingService(ITopicRepository topicRepository, ITypeLookupService
8484
/// </para>
8585
/// </remarks>
8686
/// <param name="topic">The <see cref="Topic"/> entity to derive the data from.</param>
87-
/// <param name="associations">Determines what associations the mapping should follow, if any.</param>
87+
/// <param name="associations">Determines what associations the mapping should include, if any.</param>
8888
/// <param name="cache">A cache to keep track of already-mapped object instances.</param>
8989
/// <param name="attributePrefix">The prefix to apply to the attributes.</param>
9090
/// <returns>An instance of the dynamically determined View Model with properties appropriately mapped.</returns>
@@ -170,7 +170,7 @@ public TopicMappingService(ITopicRepository topicRepository, ITypeLookupService
170170
/// </summary>
171171
/// <param name="topic">The <see cref="Topic"/> entity to derive the data from.</param>
172172
/// <param name="target">The target object to map the data to.</param>
173-
/// <param name="associations">Determines what associations the mapping should follow, if any.</param>
173+
/// <param name="associations">Determines what associations the mapping should include, if any.</param>
174174
/// <param name="cache">A cache to keep track of already-mapped object instances.</param>
175175
/// <param name="attributePrefix">The prefix to apply to the attributes.</param>
176176
/// <remarks>
@@ -252,7 +252,7 @@ private async Task<object> MapAsync(
252252
/// </summary>
253253
/// <param name="source">The <see cref="Topic"/> entity to derive the data from.</param>
254254
/// <param name="target">The target object to map the data to.</param>
255-
/// <param name="associations">Determines what associations the mapping should follow, if any.</param>
255+
/// <param name="associations">Determines what associations the mapping should include, if any.</param>
256256
/// <param name="property">Information related to the current property.</param>
257257
/// <param name="cache">A cache to keep track of already-mapped object instances.</param>
258258
/// <param name="attributePrefix">The prefix to apply to the attributes.</param>
@@ -431,7 +431,7 @@ private static void SetScalarValue(Topic source, object target, PropertyConfigur
431431
/// </remarks>
432432
/// <param name="source">The source <see cref="Topic"/> from which to pull the value.</param>
433433
/// <param name="target">The target DTO on which to set the property value.</param>
434-
/// <param name="associations">Determines what associations the mapping should follow, if any.</param>
434+
/// <param name="associations">Determines what associations the mapping should include, if any.</param>
435435
/// <param name="configuration">
436436
/// The <see cref="PropertyConfiguration"/> with details about the property's attributes.
437437
/// </param>
@@ -504,7 +504,7 @@ MappedTopicCache cache
504504
/// on the target DTO.
505505
/// </remarks>
506506
/// <param name="source">The source <see cref="Topic"/> from which to pull the value.</param>
507-
/// <param name="associations">Determines what associations the mapping should follow, if any.</param>
507+
/// <param name="associations">Determines what associations the mapping should include, if any.</param>
508508
/// <param name="configuration">
509509
/// The <see cref="PropertyConfiguration"/> with details about the property's attributes.
510510
/// </param>

0 commit comments

Comments
 (0)