To keep things simple - I am developing a course project for my college assignment. I created an application in WinForms and C#. To store various data of this application, such as Registration Info, accounts, and various application functions-related data, I used Microsoft SQL Server Database. Now in the end, I realised, that I will not be able to send the project to my teacher, it will not run on his computer, because after some reading and research I found I might need an mdf file which I could not find, which I assume is because I created the tables in the SQL Server app, not through Visual Studio.
My connection string: con = new SqlConnection(@"Data Source=MyPC;Initial Catalog=SISDB;Integrated Security=True");
As you can see, connection string is hardcoded to my computer
My question is - what are the steps, or what I should do, so that this app would run just as well on my teacher computer with no issues with database?