From fc8c18e595d31c357b9d271a131b1ab8be38faa0 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Tue, 15 Jan 2019 10:13:17 -1000 Subject: [PATCH] Update model.md (#10413) --- aspnetcore/tutorials/razor-pages/model.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/aspnetcore/tutorials/razor-pages/model.md b/aspnetcore/tutorials/razor-pages/model.md index 6e8d1b100b..a39de5ff25 100644 --- a/aspnetcore/tutorials/razor-pages/model.md +++ b/aspnetcore/tutorials/razor-pages/model.md @@ -142,6 +142,10 @@ The *appsettings.json* file is updated with the connection string used to connec --- +The preceding commands generate the following warning: "No type was specified for the decimal column 'Price' on entity type 'Movie'. This will cause values to be silently truncated if they do not fit in the default precision and scale. Explicitly specify the SQL server column type that can accommodate all the values using 'HasColumnType()'." + +You can ignore that warning, it will be fixed in a later tutorial. + The scaffold process creates and updates the following files: ### Files created