Files
Assignment6/Data/ApplicationDbInitializer.cs
Chris 30a86a5890
All checks were successful
Build and Push Docker Image / docker (push) Successful in 48s
reworking git structure
2026-04-08 12:30:29 +00:00

25 lines
583 B
C#

using Example.Models;
namespace Example.Data;
public static class ApplicationDbInitializer
{
public static void SeedDevelopmentData(ApplicationDbContext db)
{
if (db.Authors.Any())
{
return;
}
var authors = new[]
{
new Author("Author 1", "Author 1", new DateTime(1981, 1, 1)),
new Author("Author 2", "Author 2", new DateTime(1982, 2, 2)),
new Author("Author 3", "Author 3", new DateTime(1983, 3, 3))
};
db.Authors.AddRange(authors);
db.SaveChanges();
}
}