The public execution extension APIs currently have no XML comments, so IDE consumers do not get inline summaries, parameter descriptions, return-value descriptions, or cancellation-token guidance for these helpers.
Fix
This PR adds XML summaries, <param>, <returns>, and relevant async/cancellation notes for the public methods in Query.Extensions.cs without changing runtime code, signatures, dependencies, or generated files.
Tests
git diff --check HEAD^ HEAD
XML doc coverage script: public_members=62, missing_xml_docs=0
dotnet restore
dotnet build --no-restore passed with 0 Warning(s) and 0 Error(s)
dotnet test --no-restore --no-build was also attempted; it reached 334 passed and 1 skipped, with 9 failures from the MySQL integration fixture because SQLKATA_MYSQL_HOST / a MySQL test service was not configured in this environment
Risk / maintainer notes
Documentation-only diff in SqlKata.Execution/Query.Extensions.cs.
No runtime behavior, dependency, lockfile, generated tracked file, or public signature changes.
I am not claiming this completes XML docs for the entire repository; it is a focused first pass for the query execution extensions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Linked issue / bounty
Problem
The public execution extension APIs currently have no XML comments, so IDE consumers do not get inline summaries, parameter descriptions, return-value descriptions, or cancellation-token guidance for these helpers.
Fix
This PR adds XML summaries, <param>, <returns>, and relevant async/cancellation notes for the public methods in Query.Extensions.cs without changing runtime code, signatures, dependencies, or generated files.
Tests
Risk / maintainer notes