Add SQL search debugger tooling - #5812
Open
Robert Johnson (LTA-Thinking) wants to merge 2 commits into
Open
Robert Johnson (LTA-Thinking) wants to merge 2 commits into
Robert Johnson (LTA-Thinking) wants to merge 2 commits into
Conversation
Provide an interactive parser debugger updated for .NET 10, Medino, and parameterized SQL output. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Pre-seed deterministic model identifiers, make request-time lookups thread-safe, and support validated server continuation tokens. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Robert Johnson (LTA-Thinking)
requested a review
from a team
as a code owner
September 11, 2026 21:40
Robert Johnson (LTA-Thinking)
added this pull request to stack #5813
September 11, 2026 21:40
Comment on lines
+112
to
+118
| if (parameters.TryGetValue("_count", out var countValues) && countValues.Count > 0) | ||
| { | ||
| if (int.TryParse(countValues[0], out var count) && count > 0) | ||
| { | ||
| maxItemCount = count; | ||
| } | ||
| } |
|
|
||
| // Serve index.html at root | ||
| app.MapGet("/", () => Results.File( | ||
| Path.Combine(app.Environment.WebRootPath, "index.html"), "text/html")); |
Comment on lines
+50
to
+53
| catch (Exception ex) | ||
| { | ||
| return Results.Json(new { error = ex.Message, stackTrace = ex.StackTrace }, statusCode: 200); | ||
| } |
Comment on lines
+76
to
+79
| catch (Exception ex) | ||
| { | ||
| return Results.Json(new { error = ex.Message }, statusCode: 400); | ||
| } |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Describe the changes in this PR.
Related issues
Addresses [issue #].
Testing
Describe how this change was tested.
FHIR Team Checklist
Semver Change (docs)
Patch|Skip|Feature|Breaking (reason)