2021-09-16.10-27-28.mp4
Learning C# by building a Tournament Tracker that persist on SqlServer or TextFiles as required.
- .Net Core
- Dapper
- SqlServer
- TextFiles persistance
- Interface to provide access for the ui/external projects
- .Net Core WinForms
- Dependency Injections to connect with the Library (external/backend)
- Clone the reporistory.
- open solution in Visual Studio, and install missing NuGets.
- set the TrackerUI as startup project.
- open the Program.cs
- on line 19
GlobalConfig.InitializeConnections(DatabaseType.TextFile);
set the databasetype to Text file and run the app. - If you would like to use SQL,
- execute the dbscript/script.sql to create the database on your server.
- change to
GlobalConfig.InitializeConnections(DatabaseType.Sql);
Original Youtube series by Tim Corey