Context:
Running Visual Studio 2022
Using the Blazor Server project template
I have connected an existing database - hosted on a network sql server - to my project using the Project -> Connected Services -> Add -> Sql Server Database
How do I then use this connection to query the database using C# code in my project?
The amount of data I want to access from this database is quite small compared to the size of the database, so I'm trying to avoid using Entity Framework to model the database, even in part. Essentially, I just want to be able to ask the database "Is [name] in [x] table?"
