✅ Automate test data generation

I want to emulate a database where records get added, updated etc. Thinking about using EF Core to do the migrations and inserts/updates. But how to best orchestrate it? Will mainly be called manually, but maybe ran daily too (to insert x number of rows).

Easiest to build a dotnet console app, and just call it with some arguments? And if I want it to be ran daily, it can just be called from Github actions or any other pipeline runner?
Was this page helpful?