Direct SQL Connection Preconditions:=> Database has been installed according to https://www.hemelix.com/sql/sql-server-installation/ => Database has been tested by running some of the example we have provided https://www.hemelix.com/sql/sql-data-modeling/We need to make sure that SQL Server has been installed properly and also tested properly. public class SqlDirectConnection : IDisposable { private SqlConnection directConnection; public void Dispose() { if (directConnection != null) { directConnection.Close(); } } } More coming as we update the site…