An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
I'm assuming that you've already enabled database query monitoring and set builder.Services.ConfigureTelemetryModule<DependencyTrackingTelemetryModule>((module, o) => { module.EnableSqlCommandTextInstrumentation = true; });
If so, make sure you have enabled sensitive logging on the DbContext. Also, if I'm not mistaking, when you configure Logging for EF category to Information and lower, then the parameterized value should print out locally. If they print out locally, then that same configuration should trace out logs.
Should these suggestions not work, please let me know by commenting down below.