Skip to content

Commit

Permalink
Insert less data
Browse files Browse the repository at this point in the history
  • Loading branch information
bcemmett committed Sep 2, 2017
1 parent a41c6de commit ea6c16e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EntityFrameworkSchoolSystem/Problem8InsertingData.cs
Expand Up @@ -9,7 +9,7 @@ public string DoProblem8()
{
using (var db = new EFSchoolSystemContext())
{
for (int i = 0; i < 2000; i++)
for (int i = 0; i < 500; i++)
{
Pupil pupil = GetNewPupil();
db.Pupils.Add(pupil);
Expand Down

0 comments on commit ea6c16e

Please sign in to comment.