Skip to content

Commit

Permalink
Mark 'BuildPipeline' method as virtual (#6549)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvAlex1986 authored Sep 26, 2023
1 parent da6efd2 commit 3e01732
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ await BuildPipeline()
/// Applies filtering sorting and projections on the <see cref="IExecutable.Source"/>
/// </summary>
/// <returns>A aggregate fluent including the configuration of this executable</returns>
public IAggregateFluent<T> BuildPipeline()
public virtual IAggregateFluent<T> BuildPipeline()
{
var pipeline = _aggregate;
if (Sorting is not null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ await BuildPipeline()
/// Applies filtering sorting and projections on the <see cref="IExecutable.Source"/>
/// </summary>
/// <returns>A find fluent including the configuration of this executable</returns>
public IFindFluent<T, T> BuildPipeline()
public virtual IFindFluent<T, T> BuildPipeline()
{
var options = Options as FindOptions ?? new FindOptions();
var filters = FilterDefinition<T>.Empty;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ await BuildPipeline()
/// Applies filtering sorting and projections on the <see cref="IExecutable.Source"/>
/// </summary>
/// <returns>A find fluent including the configuration of this executable</returns>
public IFindFluent<T, T> BuildPipeline()
public virtual IFindFluent<T, T> BuildPipeline()
{
var pipeline = _findFluent;

Expand Down

0 comments on commit 3e01732

Please sign in to comment.