We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TagWith
In EF, the TagWith API lets users tag queries with information that is then included in the generated SQL statement.
Our SignatureParser.Parse method doesn't support tags, so they are trimmed as '-- in the span name.
SignatureParser.Parse
'--
We can review the work required to trim tags from the statement before we attempt to match the first "real" token with the SQL operation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In EF, the
TagWith
API lets users tag queries with information that is then included in the generated SQL statement.Our
SignatureParser.Parse
method doesn't support tags, so they are trimmed as'--
in the span name.We can review the work required to trim tags from the statement before we attempt to match the first "real" token with the SQL operation.
The text was updated successfully, but these errors were encountered: