Skip to content

Commit 8f37824

Browse files
cleaned-up documentation further, limiting the text to the essentials
1 parent 280a03b commit 8f37824

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

SqlKata.Execution/QueryFactory.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,8 @@ public Query FromQuery(Query query)
7373
}
7474

7575
/// <summary>
76-
/// <para>Executes an unbuffered <see cref="Query"/> without reading all results to memory at the same time.
77-
/// (Does not call <see cref="Enumerable.ToList{TSource}(IEnumerable{TSource})"/> or similar on the result.)</para>
78-
/// <para>The execution of a <see cref="Query"/> with <see cref="Query.Includes"/> is NOT supported this way.</para>
76+
/// <para>Executes an unbuffered <see cref="Query"/> without reading all results to memory at the same time.</para>
77+
/// <para>The execution of a <see cref="Query"/> with <see cref="Query.Includes"/> is *NOT* supported this way.</para>
7978
/// <para>IMPORTANT: The returned <see cref="IEnumerable{T}"/> *MUST* be fully iterated over by the caller to free underlying allotted resources.
8079
/// If this does not occur, subsequent queries will fail (especially if the underlying DB does not support multiple result sets).</para>
8180
/// </summary>

0 commit comments

Comments
 (0)