User1520731567 posted
Hi slkim,
Can I update the database with JSON files that exist in a particular folder?
I think you could.
Firstly,the data structure of the json file is consistent with the database
table, which is convenient for CURD.
And then read data from your json files and convert data to model type,finally CRUD by EF.
For example:
public class TestModel
{
public int Id { get; set; }
public string Name { get; set; }
}
json file:

...
//you will get data in a TestModel type from json file in specific folder
TestModel model = JsonConvert.DeserializeObject<TestModel>(System.IO.File.ReadAllText(@"D:\model.json"));

then CRUD by EF:
...
db.YourTables.Add(model);//add data from json file
db.SaveChanges();
...
More details about Newtonsoft, you could refer to:
https://www.newtonsoft.com/json
Best Regards.
Yuki Tao