CC56109: Extra spaces to avoid loc issues (#6409)

* CC56109: Extra spaces to avoid loc issues 

Hello, @Rick-Anderson,

This proposed file change comes from https://github.com/aspnet/Docs.ja-jp/pull/29/files. 
Could you review this contribution and help to merge if agreed?

Many thanks in advance.

* Update model2.md

* Remove extra space
pull/6412/head
Caro Caserio 2018-05-14 14:46:29 -03:00 committed by Scott Addie
parent fbe07fe9ab
commit 019872914a
1 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ The `ID` field is required by the database for the primary key.
### Add a database context class ### Add a database context class
Add the following *MovieContext.cs* class to the *Models* folder: Add the following *MovieContext.cs* class to the *Models* folder:
[!code-csharp[](../../tutorials/razor-pages/razor-pages-start/snapshot_sample/RazorPagesMovie/Models/MovieContext.cs)] [!code-csharp[](../../tutorials/razor-pages/razor-pages-start/snapshot_sample/RazorPagesMovie/Models/MovieContext.cs)]
The preceding code creates a `DbSet` property for the entity set. In Entity Framework terminology, an entity set typically corresponds to a database table, and an entity corresponds to a row in the table. The preceding code creates a `DbSet` property for the entity set. In Entity Framework terminology, an entity set typically corresponds to a database table, and an entity corresponds to a row in the table.