Skip to content

Commit 5e34a39

Browse files
Fixed small documentation changes
1 parent bab5c1a commit 5e34a39

File tree

14 files changed

+38
-38
lines changed

14 files changed

+38
-38
lines changed

src/DotNetToolkit.Repository.AdoNet/Internal/AdoNetRepositoryContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ public int SaveChanges()
375375
/// Finds an entity with the given primary key values in the repository.
376376
/// </summary>
377377
/// <typeparam name="TEntity">The type of the of the entity.</typeparam>
378-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
378+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
379379
/// <param name="keyValues">The values of the primary key for the entity to be found.</param>
380380
/// <returns>The entity found in the repository.</returns>
381381
public IQueryResult<TEntity> Find<TEntity>(IFetchQueryStrategy<TEntity> fetchStrategy, params object[] keyValues) where TEntity : class
@@ -739,7 +739,7 @@ public IPagedQueryResult<IEnumerable<TResult>> GroupBy<TEntity, TGroupKey, TResu
739739
/// </summary>
740740
/// <typeparam name="TEntity">The type of the of the entity.</typeparam>
741741
/// <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
742-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
742+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
743743
/// <param name="keyValues">The values of the primary key for the entity to be found.</param>
744744
/// <returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the entity found in the repository.</returns>
745745
public async Task<IQueryResult<TEntity>> FindAsync<TEntity>(CancellationToken cancellationToken, IFetchQueryStrategy<TEntity> fetchStrategy, params object[] keyValues) where TEntity : class

src/DotNetToolkit.Repository.EntityFramework/Internal/EfRepositoryContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ public override int SaveChanges()
231231
/// Finds an entity with the given primary key values in the repository.
232232
/// </summary>
233233
/// <typeparam name="TEntity">The type of the of the entity.</typeparam>
234-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
234+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
235235
/// <param name="keyValues">The values of the primary key for the entity to be found.</param>
236236
/// <returns>The entity found in the repository.</returns>
237237
public override IQueryResult<TEntity> Find<TEntity>(IFetchQueryStrategy<TEntity> fetchStrategy, params object[] keyValues)
@@ -384,7 +384,7 @@ protected override Task<Dictionary<TKey, TElement>> ToDictionaryAsync<TSource, T
384384
/// </summary>
385385
/// <typeparam name="TEntity">The type of the of the entity.</typeparam>
386386
/// <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
387-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
387+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
388388
/// <param name="keyValues">The values of the primary key for the entity to be found.</param>
389389
/// <returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the entity found in the repository.</returns>
390390
public override async Task<IQueryResult<TEntity>> FindAsync<TEntity>(CancellationToken cancellationToken, IFetchQueryStrategy<TEntity> fetchStrategy, params object[] keyValues)

src/DotNetToolkit.Repository.EntityFrameworkCore/Internal/EfCoreRepositoryContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ public override int SaveChanges()
234234
/// Finds an entity with the given primary key values in the repository.
235235
/// </summary>
236236
/// <typeparam name="TEntity">The type of the of the entity.</typeparam>
237-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
237+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
238238
/// <param name="keyValues">The values of the primary key for the entity to be found.</param>
239239
/// <returns>The entity found in the repository.</returns>
240240
public override IQueryResult<TEntity> Find<TEntity>(IFetchQueryStrategy<TEntity> fetchStrategy, params object[] keyValues)
@@ -387,7 +387,7 @@ protected override Task<Dictionary<TKey, TElement>> ToDictionaryAsync<TSource, T
387387
/// </summary>
388388
/// <typeparam name="TEntity">The type of the of the entity.</typeparam>
389389
/// <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
390-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
390+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
391391
/// <param name="keyValues">The values of the primary key for the entity to be found.</param>
392392
/// <returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the entity found in the repository.</returns>
393393
public override async Task<IQueryResult<TEntity>> FindAsync<TEntity>(CancellationToken cancellationToken, IFetchQueryStrategy<TEntity> fetchStrategy, params object[] keyValues)

src/DotNetToolkit.Repository.InMemory/Internal/InMemoryRepositoryContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ public override IQueryResult<int> ExecuteSqlCommand(string sql, CommandType cmdT
302302
/// Finds an entity with the given primary key values in the repository.
303303
/// </summary>
304304
/// <typeparam name="TEntity">The type of the of the entity.</typeparam>
305-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
305+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
306306
/// <param name="keyValues">The values of the primary key for the entity to be found.</param>
307307
/// <returns>The entity found in the repository.</returns>
308308
public override IQueryResult<TEntity> Find<TEntity>(IFetchQueryStrategy<TEntity> fetchStrategy, params object[] keyValues)

src/DotNetToolkit.Repository/Configuration/IRepositoryContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public interface IRepositoryContext : IDisposable
8787
/// Finds an entity with the given primary key values in the repository.
8888
/// </summary>
8989
/// <typeparam name="TEntity">The type of the of the entity.</typeparam>
90-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
90+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
9191
/// <param name="keyValues">The values of the primary key for the entity to be found.</param>
9292
/// <returns>The entity found in the repository.</returns>
9393
IQueryResult<TEntity> Find<TEntity>(IFetchQueryStrategy<TEntity> fetchStrategy, params object[] keyValues) where TEntity : class;

src/DotNetToolkit.Repository/Configuration/IRepositoryContextAsync.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public interface IRepositoryContextAsync : IRepositoryContext, IDisposable
5050
/// <typeparam name="TEntity">The type of the of the entity.</typeparam>
5151
/// <param name="cancellationToken">A <see cref="System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
5252
/// <param name="keyValues">The values of the primary key for the entity to be found.</param>
53-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
53+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
5454
/// <returns>The <see cref="System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the entity found in the repository.</returns>
5555
Task<IQueryResult<TEntity>> FindAsync<TEntity>(CancellationToken cancellationToken, IFetchQueryStrategy<TEntity> fetchStrategy, params object[] keyValues) where TEntity : class;
5656

src/DotNetToolkit.Repository/Configuration/LinqRepositoryContextBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public virtual ITransactionManager BeginTransaction()
157157
/// Finds an entity with the given primary key values in the repository.
158158
/// </summary>
159159
/// <typeparam name="TEntity">The type of the of the entity.</typeparam>
160-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
160+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
161161
/// <param name="keyValues">The values of the primary key for the entity to be found.</param>
162162
/// <returns>The entity found in the repository.</returns>
163163
public virtual IQueryResult<TEntity> Find<TEntity>([CanBeNull] IFetchQueryStrategy<TEntity> fetchStrategy, [NotNull] params object[] keyValues) where TEntity : class

src/DotNetToolkit.Repository/Configuration/LinqRepositoryContextBaseAsync.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public abstract class LinqRepositoryContextBaseAsync : LinqRepositoryContextBase
9191
/// <typeparam name="TEntity">The type of the of the entity.</typeparam>
9292
/// <param name="cancellationToken">A <see cref="System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
9393
/// <param name="keyValues">The values of the primary key for the entity to be found.</param>
94-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
94+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
9595
/// <returns>The <see cref="System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the entity found in the repository.</returns>
9696
public virtual async Task<IQueryResult<TEntity>> FindAsync<TEntity>(CancellationToken cancellationToken, [CanBeNull] IFetchQueryStrategy<TEntity> fetchStrategy, [NotNull] params object[] keyValues) where TEntity : class
9797
{

src/DotNetToolkit.Repository/IReadOnlyRepository.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public interface IReadOnlyRepository<TEntity, in TKey1, in TKey2, in TKey3> wher
151151
/// <param name="key1">The value of the first part of the composite primary key used to match entities against.</param>
152152
/// <param name="key2">The value of the second part of the composite primary key used to match entities against.</param>
153153
/// <param name="key3">The value of the third part of the composite primary key used to match entities against.</param>
154-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
154+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
155155
/// <return>The entity found.</return>
156156
TEntity Find(TKey1 key1, TKey2 key2, TKey3 key3, IFetchQueryStrategy<TEntity> fetchStrategy);
157157

@@ -346,7 +346,7 @@ public interface IReadOnlyRepository<TEntity, in TKey1, in TKey2, in TKey3> wher
346346
/// <param name="key1">The value of the first part of the composite primary key used to match entities against.</param>
347347
/// <param name="key2">The value of the second part of the composite primary key used to match entities against.</param>
348348
/// <param name="key3">The value of the third part of the composite primary key used to match entities against.</param>
349-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
349+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
350350
/// <returns>The <see cref="System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the entity found.</returns>
351351
/// <param name="cancellationToken">A <see cref="System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
352352
Task<TEntity> FindAsync(TKey1 key1, TKey2 key2, TKey3 key3, IFetchQueryStrategy<TEntity> fetchStrategy, CancellationToken cancellationToken = new CancellationToken());
@@ -688,7 +688,7 @@ public interface IReadOnlyRepository<TEntity, in TKey1, in TKey2> where TEntity
688688
/// </summary>
689689
/// <param name="key1">The value of the first part of the composite primary key used to match entities against.</param>
690690
/// <param name="key2">The value of the second part of the composite primary key used to match entities against.</param>
691-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
691+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
692692
/// <return>The entity found.</return>
693693
TEntity Find(TKey1 key1, TKey2 key2, IFetchQueryStrategy<TEntity> fetchStrategy);
694694

@@ -880,7 +880,7 @@ public interface IReadOnlyRepository<TEntity, in TKey1, in TKey2> where TEntity
880880
/// </summary>
881881
/// <param name="key1">The value of the first part of the composite primary key used to match entities against.</param>
882882
/// <param name="key2">The value of the second part of the composite primary key used to match entities against.</param>
883-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
883+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
884884
/// <returns>The <see cref="System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the entity found.</returns>
885885
/// <param name="cancellationToken">A <see cref="System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
886886
Task<TEntity> FindAsync(TKey1 key1, TKey2 key2, IFetchQueryStrategy<TEntity> fetchStrategy, CancellationToken cancellationToken = new CancellationToken());
@@ -1218,7 +1218,7 @@ public interface IReadOnlyRepository<TEntity, in TKey> where TEntity : class
12181218
/// Finds an entity with the given primary key value in the repository.
12191219
/// </summary>
12201220
/// <param name="key">The value of the primary key for the entity to be found.</param>
1221-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
1221+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
12221222
/// <return>The entity found.</return>
12231223
TEntity Find(TKey key, IFetchQueryStrategy<TEntity> fetchStrategy);
12241224

@@ -1407,7 +1407,7 @@ public interface IReadOnlyRepository<TEntity, in TKey> where TEntity : class
14071407
/// Asynchronously finds an entity with the given primary key value in the repository.
14081408
/// </summary>
14091409
/// <param name="key">The value of the primary key for the entity to be found.</param>
1410-
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity</param>
1410+
/// <param name="fetchStrategy">Defines the child objects that should be retrieved when loading the entity.</param>
14111411
/// <returns>The <see cref="System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the entity found.</returns>
14121412
/// <param name="cancellationToken">A <see cref="System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
14131413
Task<TEntity> FindAsync(TKey key, IFetchQueryStrategy<TEntity> fetchStrategy, CancellationToken cancellationToken = new CancellationToken());

0 commit comments

Comments
 (0)