Is it possible to allow a PWA Blazor WASM application that hosted online to connect to a local database SQL Server after downloading it by the user?
I have modified my connection string by changing the instance name to the local IP address and adding port 1433 to it.
"DefaultConnection": "Server=192.168.1.102,1433;Database=myDatabase;User Id=sa; Password=myPassword@me;TrustServerCertificate=true; MultipleActiveResultSets=True"Is it possible?