You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="projector">A function to project each entity into a new form.</param>
919
919
/// <param name="cancellationToken">A <see cref="System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
920
920
/// <returns>The <see cref="System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing an entity which has been projected into a new form.</returns>
/// <param name="projector">A function to project each entity into a new form.</param>
945
945
/// <param name="cancellationToken">A <see cref="System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
946
946
/// <returns>The <see cref="System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing an entity which has been projected into a new form.</returns>
/// <param name="projector">A function to project each entity into a new form.</param>
960
960
/// <param name="cancellationToken">A <see cref="System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
961
961
/// <returns>The <see cref="System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing a list which each entity has been projected into a new form.</returns>
/// <param name="projector">A function to project each entity into a new form.</param>
1003
1003
/// <param name="cancellationToken">A <see cref="System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
1004
1004
/// <returns>The <see cref="System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing a list which each entity has been projected into a new form.</returns>
@@ -609,7 +609,7 @@ public IPagedQueryResult<IEnumerable<TResult>> GroupBy<TEntity, TGroupKey, TResu
609
609
/// <param name="projector">A function to project each entity into a new form.</param>
610
610
/// <param name="cancellationToken">A <see cref="System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
611
611
/// <returns>The <see cref="System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing a list which each entity has been projected into a new form.</returns>
@@ -105,7 +105,7 @@ public override IEnumerable<TEntity> ExecuteSqlQuery<TEntity>(string sql, Comman
105
105
106
106
while(reader.Read())
107
107
{
108
-
list.Add(projector(reader,Conventions));
108
+
list.Add(projector(reader));
109
109
}
110
110
111
111
returnlist;
@@ -309,7 +309,7 @@ protected override Task<Dictionary<TKey, TElement>> ToDictionaryAsync<TSource, T
309
309
/// <param name="projector">A function to project each entity into a new form.</param>
310
310
/// <param name="cancellationToken">A <see cref="System.Threading.CancellationToken" /> to observe while waiting for the task to complete.</param>
311
311
/// <returns>The <see cref="System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing a list which each entity has been projected into a new form.</returns>
0 commit comments