Hello,
After moving my providers from System.Data.SqlClient to Microsoft.Data.SqlClient.
The QueryableValuesCommandInterceptor.TransformCommand is throwing the following error:
QueryableValues only works with a SQL Server provider.
This seems somehow related to the correction done here #15
To support the Microsoft.Data.SqlClient seems simple, change the System.Data.SqlClient usage to just use the DbParameter/DbType instead of the cast to SqlParamter/SqlDataType
Thanks @yv989c