Skip to content

Commit 5aa8b4b

Browse files
fix
1 parent 7f4a52d commit 5aa8b4b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

examples/src/EF/Program.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@
77
await db.Database.EnsureCreatedAsync();
88

99
Console.WriteLine("Inserting a new blog");
10-
db.Add(new Blog { Url = "http://blogs.msdn.com/adonet - 1" });
11-
db.Add(new Blog { Url = "http://blogs.msdn.com/adonet - 2" });
12-
db.Add(new Blog { Url = "http://blogs.msdn.com/adonet - 3" });
13-
db.Add(new Blog { Url = "http://blogs.msdn.com/adonet - 4" });
10+
db.Add(new Blog { Url = "http://blogs.msdn.com/adonet" });
1411

1512
await db.SaveChangesAsync();
1613

0 commit comments

Comments
 (0)