PacktPublishing / Web-Development-with-Blazor-Second-Edition

Code Repository for Web Development with Blazor Second Edition Published by Packt
MIT License
43 stars 41 forks source link

Path to the Data folder #7

Open CopperBeardy opened 1 year ago

CopperBeardy commented 1 year ago

In the book you have the path in Program.cs set to

options.DataPath = @"..\..\..\Data\";

which works if you are using the repository solutions to follow along.

but if your not then the path will be incorrect, I was scratching my head for a little while till I realised this, so if you do like me created a fresh solution to follow along and the create a folder in the solution directory for the example data you will need to modify the path to

options.DataPath = @"..\{YourFolderName}\";

EngstromJimmy commented 1 year ago

Thanks for the report, I'll keep this one open so readers can find it :)