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
returnExecuteList<TEntity>(config.Sql,config.Parameters, r =>AutoMap(r,config));
1809
-
}
1810
-
1811
1812
/// <summary>
1812
1813
/// Gets a collection of entities that satisfies the criteria specified by the <paramref name="criteria" /> from the repository.
1813
1814
/// </summary>
@@ -1916,7 +1917,7 @@ public override void Dispose()
1916
1917
1917
1918
#endregion
1918
1919
1919
-
#region Overrides of RepositoryAsyncBase<TEntity,TKey>
1920
+
#region Overrides of RepositoryBaseAsync<TEntity,TKey>
1920
1921
1921
1922
/// <summary>
1922
1923
/// A protected asynchronous overridable method for saving changes made in the current unit of work in the repository.
@@ -1965,19 +1966,6 @@ public override void Dispose()
1965
1966
returnExecuteObjectAsync<TEntity>(config.Sql,config.Parameters, r =>AutoMap(r,config),cancellationToken);
1966
1967
}
1967
1968
1968
-
/// <summary>
1969
-
/// A protected asynchronous overridable method for getting an entity that satisfies the criteria specified by the <paramref name="criteria" /> from the repository.
returnExecuteObjectAsync<TEntity>(config.Sql,config.Parameters, r =>AutoMap(r,config),cancellationToken);
1979
-
}
1980
-
1981
1969
/// <summary>
1982
1970
/// A protected asynchronous overridable method for getting an entity that satisfies the criteria specified by the <paramref name="criteria" /> from the repository.
1983
1971
/// </summary>
@@ -1994,24 +1982,11 @@ public override void Dispose()
1994
1982
returnExecuteObjectAsync<TResult>(config.Sql,config.Parameters, r =>AutoMap<TResult>(r,selector,config),cancellationToken);
1995
1983
}
1996
1984
1997
-
/// <summary>
1998
-
/// A protected asynchronous overridable method for getting a collection of entities that satisfies the criteria specified by the <paramref name="criteria" /> from the repository.
returnExecuteListAsync<TEntity>(config.Sql,config.Parameters, r =>AutoMap(r,config),cancellationToken);
2005
-
}
2006
-
2007
1985
/// <summary>
2008
1986
/// A protected asynchronous overridable method for getting a collection of entities that satisfies the criteria specified by the <paramref name="criteria" /> from the repository.
0 commit comments