Skip to content

Commit 8a36461

Browse files
maca88hazzik
authored andcommitted
Fixed summaries for ICriteria and IQueryOver async methods
1 parent cd14c78 commit 8a36461

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/NHibernate/ICriteria.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,9 +325,9 @@ public interface ICriteria : ICloneable
325325
IAsyncEnumerable<T> FutureAsync<T>();
326326

327327
/// <summary>
328-
/// Get an IFutureValue instance, whose value can be retrieved through
329-
/// its Value property. The query is not executed until the Value property
330-
/// is retrieved, which will execute other Future queries as well in a
328+
/// Get an <see cref="IFutureValueAsync{T}"/> instance, whose value can be retrieved through
329+
/// its <see cref="IFutureValueAsync{T}.GetValue"/> method. The query is not executed until
330+
/// the GetValue method is called, which will execute other Future queries as well in a
331331
/// single roundtrip
332332
/// </summary>
333333
/// <typeparam name="T"></typeparam>

src/NHibernate/IQueryOver.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,17 +129,17 @@ public interface IQueryOver<TRoot> : IQueryOver
129129
IAsyncEnumerable<U> FutureAsync<U>();
130130

131131
/// <summary>
132-
/// Get an IFutureValue instance, whose value can be retrieved through
133-
/// its Value property. The query is not executed until the Value property
134-
/// is retrieved, which will execute other Future queries as well in a
132+
/// Get an <see cref="IFutureValueAsync{T}"/> instance, whose value can be retrieved through
133+
/// its <see cref="IFutureValueAsync{T}.GetValue"/> method. The query is not executed until
134+
/// the GetValue method is called, which will execute other Future queries as well in a
135135
/// single roundtrip
136136
/// </summary>
137137
IFutureValueAsync<TRoot> FutureValueAsync();
138138

139139
/// <summary>
140-
/// Get an IFutureValue instance, whose value can be retrieved through
141-
/// its Value property. The query is not executed until the Value property
142-
/// is retrieved, which will execute other Future queries as well in a
140+
/// Get an <see cref="IFutureValueAsync{T}"/> instance, whose value can be retrieved through
141+
/// its <see cref="IFutureValueAsync{T}.GetValue"/> method. The query is not executed until
142+
/// the GetValue method is called, which will execute other Future queries as well in a
143143
/// single roundtrip
144144
/// </summary>
145145
IFutureValueAsync<U> FutureValueAsync<U>();

0 commit comments

Comments
 (0)