Entity Framework Core 2.1 has a nice little feature for seed data. Previously, seeding data quite often involved a series of checks and potential for a script to exist that, if run on the wrong data, would repeatedly re-generate the same seed data.
In 2.1, you can simply override the OnModelCreating function of the data context, like so: https://goo.gl/9HMK6g #DataIntegration #ML

