I am fairly new to ASP.NET Core MVC and have created a Web API by following this tutorial.
Everything works fine but the data for the CRUD operations is stored in memory, and I am being asked to have the data stored in a json file instead.
Can anybody give me some advice on how to do it, or point me to a quick tutorial that explains how to modify the context/repository to do this? I am used to Entity Framework/SQL server transactions and I know this is a lot simpler, but I have never done it before and need some guidance. :) I have found some related questions but they seem much more complicated than what I am trying to do.
My code matches exactly what is in the URL but I will be happy to post parts of it if it is helpful. Thank you so much!