We're using the Application Insights SDK (v2.14) in our .NET Framework 4.7.2 application and have been able to track SQL dependencies (albeit without query text) successfully.
We're now migrating to the Microsoft.Data.SqlClient package from System.Data.SqlClient so we can also do Advanced SQL tracking to see the full query text in our telemetry. We've updated the ApplicationInsights.config file to set EnableSqlCommandTextInstrumentation to true.
However, after installing the latest Microsoft.Data.SqlClient package (2.01 at the time of writing) we're no longer getting ANY SQL dependencies being tracked for code using the client.
What's the issue?