Skip to content

Fix reference errors in XML comments #3519

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/NHibernate/Criterion/MatchMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public override string ToString()
private class ExactMatchMode : MatchMode
{
/// <summary>
/// Initialize a new instance of the <see cref="ExactMatchMode" /> class.
/// Initialize a new instance of the <see cref="MatchMode.ExactMatchMode" /> class.
/// </summary>
public ExactMatchMode() : base(0, "EXACT")
{
Expand All @@ -115,7 +115,7 @@ public override string ToMatchString(string pattern)
private class StartMatchMode : MatchMode
{
/// <summary>
/// Initialize a new instance of the <see cref="StartMatchMode" /> class.
/// Initialize a new instance of the <see cref="MatchMode.StartMatchMode" /> class.
/// </summary>
public StartMatchMode() : base(1, "START")
{
Expand All @@ -138,7 +138,7 @@ public override string ToMatchString(string pattern)
private class EndMatchMode : MatchMode
{
/// <summary>
/// Initialize a new instance of the <see cref="EndMatchMode" /> class.
/// Initialize a new instance of the <see cref="MatchMode.EndMatchMode" /> class.
/// </summary>
public EndMatchMode() : base(2, "END")
{
Expand All @@ -162,7 +162,7 @@ public override string ToMatchString(string pattern)
private class AnywhereMatchMode : MatchMode
{
/// <summary>
/// Initialize a new instance of the <see cref="AnywhereMatchMode" /> class.
/// Initialize a new instance of the <see cref="MatchMode.AnywhereMatchMode" /> class.
/// </summary>
public AnywhereMatchMode() : base(3, "ANYWHERE")
{
Expand All @@ -179,4 +179,4 @@ public override string ToMatchString(string pattern)
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace NHibernate.Linq.Visitors
{
/// <summary>
/// Contains the information needed by <see cref="NhRelinqQueryParser.PreTransform"/> to perform an early transformation.
/// Contains the information needed by <see cref="NhRelinqQueryParser.PreTransform(System.Linq.Expressions.Expression, PreTransformationParameters)"/> to perform an early transformation.
/// </summary>
public class PreTransformationParameters
{
Expand Down
2 changes: 1 addition & 1 deletion src/NHibernate/Linq/Visitors/PreTransformationResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace NHibernate.Linq.Visitors
{
/// <summary>
/// The result of <see cref="NhRelinqQueryParser.PreTransform"/> method.
/// The result of <see cref="NhRelinqQueryParser.PreTransform(System.Linq.Expressions.Expression, PreTransformationParameters)"/> method.
/// </summary>
public class PreTransformationResult
{
Expand Down
2 changes: 1 addition & 1 deletion src/NHibernate/Multi/LinqBatchItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private static LinqBatchItem<TResult> GetForQuery<TResult>(IQueryable query, Exp
}

/// <summary>
/// Create instance via <see cref="LinqBatchItem.Create"/> methods
/// Create instance via <see cref="LinqBatchItem.Create{T,TResult}"/> methods
/// </summary>
/// <typeparam name="T">Result type</typeparam>
public partial class LinqBatchItem<T> : QueryBatchItem<T>, ILinqBatchItem
Expand Down