We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 846e528 commit 64b6ea1Copy full SHA for 64b6ea1
examples/Linq2db.QuickStart/Program.cs
@@ -174,8 +174,8 @@ private async Task LoadData()
174
};
175
await db.BulkCopyAsync(eps);
176
177
- _ = series.Sum(x => x.ReleaseDate.Ticks + (x.SeriesInfo?.Length ?? 0));
178
- _ = seasons.Sum(x => x.FirstAired.Ticks + x.LastAired.Ticks);
+ _ = series[0].ReleaseDate.Ticks + (series[0].SeriesInfo?.Length ?? 0);
+ _ = seasons[0].FirstAired.Ticks + seasons[0].LastAired.Ticks;
179
180
logger.LogInformation("Loaded data");
181
}
0 commit comments