Skip to content

Commit 1e11556

Browse files
[EFCore] Fix style warning
Add `this.` prefix.
1 parent e371e6d commit 1e11556

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OpenTelemetry.Instrumentation.EntityFrameworkCore/Implementation/EntityFrameworkDiagnosticListener.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public override void OnEventWritten(string name, object? payload)
155155
return;
156156
}
157157

158-
if (options.EmitNewAttributes && this.options.SetDbQueryParameters)
158+
if (this.options.EmitNewAttributes && this.options.SetDbQueryParameters)
159159
{
160160
SqlParameterProcessor.AddQueryParameters(activity, command);
161161
}

0 commit comments

Comments
 (0)