Why am I building this?
- Because I want to make an app that also has a decent looking UI, and also because I want to make use of the Databases knowledge I gained recently
- Net.Core v7.0
- Dapper
- MySqlConnector
Clone the repo
git clone https://github.com/DavidV1600/TournamentTracker.gitThe Project can save data in both Sql and Txt format, but because my Database is local you cannot save to it so, instead go to Program.cs and set the connection only for Txt or only copy the line below and change it with the one in the code.
TrackerLibrary.GlobalConfig.InitializeConnections(false,true);//1-Sql, 2-TxtAfter that you have to go in TextConnectorProccesor and change the FullFilePath() function, and instead of the return line there put the location where you want your data to be saved
return $"YourSavingLocation//{FileName}";To Run the Project simply select TrackerUI as the StartUp Project if it isn't already and click Run.
Tim Corey Tutorial - https://www.youtube.com/watch?v=HalXZUHfKLA&list=PLLWMQd6PeGY3t63w-8MMIjIyYS7MsFcCi
Dapper Official Site - https://dappertutorial.net/
Microsoft Page for using SSMS - https://learn.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver16
