Skip to content

Commit

Permalink
Fixed XML Comment issues on Mongo (#5238)
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalSenn committed Jul 12, 2022
1 parent 7f9b39d commit fd47b19
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 4 deletions.
Expand Up @@ -45,7 +45,7 @@ await BuildPipeline()
public override string Print() => BuildPipeline().ToString() ?? "";

/// <summary>
/// Applies filtering sorting and projections on the <see cref="IExecutable{T}.Source"/>
/// 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()
Expand Down
Expand Up @@ -89,7 +89,7 @@ await BuildPipeline()
public override string Print() => BuildPipeline().ToString() ?? "";

/// <summary>
/// Applies filtering sorting and projections on the <see cref="IExecutable{T}.Source"/>
/// 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()
Expand Down
Expand Up @@ -45,7 +45,7 @@ await BuildPipeline()
public override string Print() => BuildPipeline().ToString() ?? "";

/// <summary>
/// Applies filtering sorting and projections on the <see cref="IExecutable{T}.Source"/>
/// 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()
Expand Down
Expand Up @@ -20,6 +20,7 @@ public static class MongoDbDataRequestBuilderExtensions
/// The <see cref="IRequestExecutorBuilder"/>.
/// </param>
/// <param name="name"></param>
/// <param name="compatabilityMode">Uses the old behaviour of naming the filters</param>
/// <returns>
/// Returns the <see cref="IRequestExecutorBuilder"/>.
/// </returns>
Expand Down Expand Up @@ -73,7 +74,7 @@ public static class MongoDbDataRequestBuilderExtensions
builder
.BindRuntimeType<ObjectId, StringType>()
#pragma warning disable CS8622
.AddTypeConverter<ObjectId, string>(x => x.ToString())
.AddTypeConverter<ObjectId, string>(x => x.ToString())
.AddTypeConverter<string, ObjectId>(x => new ObjectId(x));
#pragma warning restore CS8622

Expand Down
Expand Up @@ -15,6 +15,7 @@ public static class MongoDbSchemaBuilderExtensions
/// The <see cref="ISchemaBuilder"/>.
/// </param>
/// <param name="name"></param>
/// <param name="compatabilityMode">Uses the old behaviour of naming the filters</param>
/// <returns>
/// Returns the <see cref="ISchemaBuilder"/>.
/// </returns>
Expand Down
Expand Up @@ -19,6 +19,7 @@ public static class MongoDbFilterConventionDescriptorExtensions
/// Initializes the default configuration for MongoDb on the convention by adding operations
/// </summary>
/// <param name="descriptor">The descriptor where the handlers are registered</param>
/// <param name="compatabilityMode">Uses the old behaviour of naming the filters</param>
/// <returns>The descriptor that was passed in as a parameter</returns>
public static IFilterConventionDescriptor AddMongoDbDefaults(
this IFilterConventionDescriptor descriptor,
Expand Down Expand Up @@ -79,6 +80,7 @@ public static class MongoDbFilterConventionDescriptorExtensions
/// </summary>
/// <param name="descriptor">The descriptor where the handlers are registered</param>
/// <returns>The descriptor that was passed in as a parameter</returns>
/// <param name="compatabilityMode">Uses the old behaviour of naming the filters</param>
/// <exception cref="ArgumentNullException">
/// Throws in case the argument <paramref name="descriptor"/> is null
/// </exception>
Expand Down
@@ -1,4 +1,5 @@
using HotChocolate.Data.Filters;
using MongoDB.Driver;

namespace HotChocolate.Data.MongoDb.Filters;

Expand Down

0 comments on commit fd47b19

Please sign in to comment.