File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -325,9 +325,9 @@ public interface ICriteria : ICloneable
325
325
IAsyncEnumerable < T > FutureAsync < T > ( ) ;
326
326
327
327
/// <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
331
331
/// single roundtrip
332
332
/// </summary>
333
333
/// <typeparam name="T"></typeparam>
Original file line number Diff line number Diff line change @@ -129,17 +129,17 @@ public interface IQueryOver<TRoot> : IQueryOver
129
129
IAsyncEnumerable < U > FutureAsync < U > ( ) ;
130
130
131
131
/// <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
135
135
/// single roundtrip
136
136
/// </summary>
137
137
IFutureValueAsync < TRoot > FutureValueAsync ( ) ;
138
138
139
139
/// <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
143
143
/// single roundtrip
144
144
/// </summary>
145
145
IFutureValueAsync < U > FutureValueAsync < U > ( ) ;
You can’t perform that action at this time.
0 commit comments