Skip to content

Commit beee716

Browse files
NH-3944 - fixing some bad spaces, to be squashed.
1 parent 789ecd0 commit beee716

File tree

2 files changed

+23
-16
lines changed

2 files changed

+23
-16
lines changed

src/NHibernate/Linq/LinqExtensionMethods.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,13 @@ public static IFutureValue<T> ToFutureValue<T>(this IQueryable<T> query)
104104
return (IFutureValue<T>) future;
105105
}
106106

107+
/// <summary>
108+
/// Allows to specify the parameter NHibernate type to use for a literal in a queryable expression.
109+
/// </summary>
110+
/// <typeparam name="T">The type of the literal.</typeparam>
111+
/// <param name="parameter">The literal value.</param>
112+
/// <param name="type">The NHibernate type, usually obtained from <c>NHibernateUtil</c> properties.</param>
113+
/// <returns>The literal value.</returns>
107114
[DBOnly]
108115
public static T MappedAs<T>(this T parameter, IType type)
109116
{

src/NHibernate/Linq/ReWriters/ResultOperatorRewriterResult.cs

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ namespace NHibernate.Linq.ReWriters
88
/// Result of <see cref="ResultOperatorRewriter.Rewrite" />.
99
/// </summary>
1010
public class ResultOperatorRewriterResult
11-
{
12-
public ResultOperatorRewriterResult(IEnumerable<ResultOperatorBase> rewrittenOperators, IStreamedDataInfo evaluationType)
13-
{
14-
RewrittenOperators = rewrittenOperators;
15-
EvaluationType = evaluationType;
16-
}
11+
{
12+
public ResultOperatorRewriterResult(IEnumerable<ResultOperatorBase> rewrittenOperators, IStreamedDataInfo evaluationType)
13+
{
14+
RewrittenOperators = rewrittenOperators;
15+
EvaluationType = evaluationType;
16+
}
1717

18-
/// <summary>
19-
/// Gets an <see cref="IEnumerable{T}" /> of <see cref="ResultOperatorBase" /> implementations that were
20-
/// rewritten.
21-
/// </summary>
22-
public IEnumerable<ResultOperatorBase> RewrittenOperators { get; }
18+
/// <summary>
19+
/// Gets an <see cref="IEnumerable{T}" /> of <see cref="ResultOperatorBase" /> implementations that were
20+
/// rewritten.
21+
/// </summary>
22+
public IEnumerable<ResultOperatorBase> RewrittenOperators { get; }
2323

24-
/// <summary>
25-
/// Gets the <see cref="IStreamedDataInfo" /> representing the type of data that the operator works upon.
26-
/// </summary>
27-
public IStreamedDataInfo EvaluationType { get; }
28-
}
24+
/// <summary>
25+
/// Gets the <see cref="IStreamedDataInfo" /> representing the type of data that the operator works upon.
26+
/// </summary>
27+
public IStreamedDataInfo EvaluationType { get; }
28+
}
2929
}

0 commit comments

Comments
 (0)