updated seeder message to display message in console

This commit is contained in:
StevanFreeborn
2022-06-21 15:52:03 -05:00
parent 2ecd3ff8bf
commit 19729f4cc7
+6 -2
View File
@@ -29,13 +29,15 @@ namespace server.Persistence.Seed
{ {
await _seasons.DeleteManyAsync(season => true); await _seasons.DeleteManyAsync(season => true);
var seasonsFilePath = Path.Combine(AppContext.BaseDirectory, "Persistence/Seed/Data/seasons.json"); var fileName = "seasons.json";
var seasonsFilePath = Path.Combine(AppContext.BaseDirectory, $"Persistence/Seed/Data/{fileName}");
var seasonsJson = File.ReadAllText(seasonsFilePath); var seasonsJson = File.ReadAllText(seasonsFilePath);
var seasons = JsonSerializer.Deserialize<List<Season>>(seasonsJson); var seasons = JsonSerializer.Deserialize<List<Season>>(seasonsJson);
if(seasons != null) if(seasons != null)
{ {
await _seasons.InsertManyAsync(seasons); await _seasons.InsertManyAsync(seasons);
Console.WriteLine($"Seeded databases with seasons from {fileName}");
} }
} }
@@ -43,13 +45,15 @@ namespace server.Persistence.Seed
{ {
await _episodes.DeleteManyAsync(episode => true); await _episodes.DeleteManyAsync(episode => true);
var episodesFilePath = Path.Combine(AppContext.BaseDirectory, "Persistence/Seed/Data/episodes.json"); var fileName = "episodes.json";
var episodesFilePath = Path.Combine(AppContext.BaseDirectory, $"Persistence/Seed/Data/{fileName}");
var episodesJson = File.ReadAllText(episodesFilePath); var episodesJson = File.ReadAllText(episodesFilePath);
var episodes = JsonSerializer.Deserialize<List<Episode>>(episodesJson); var episodes = JsonSerializer.Deserialize<List<Episode>>(episodesJson);
if (episodes != null) if (episodes != null)
{ {
await _episodes.InsertManyAsync(episodes); await _episodes.InsertManyAsync(episodes);
Console.WriteLine($"Seeded databases with episodes from {fileName}");
} }
} }
} }