I have a C# list filled with data converted from a JSON file. Now I want to have CRUD functionality on the items in the list. I have made a model etc, to deserialize the JSON into the list. Now my question is. Can I use this list as my Database Context, so I don't have to connect to a database or whatever.
Model with properties:
Deserialize json:
Thanks in advance!