Using json as database with EF, how can I link EF and the json file during DbContext initialization?
- by blacai
For a personal testing-project I am considering to create a SPA with the following technologies:
ASP.NET MVC + EF + WebAPI + AngularJS.
The project will make use of small amount of data, so I was thinking I could use just a .json file as storage.
But I am not sure about how to proceed with the link between EF and the json file in the…