commit
4848a5941a
|
@ -177,7 +177,7 @@ info: Microsoft.EntityFrameworkCore.Database.Command[200101]
|
|||
Done.
|
||||
```
|
||||
|
||||
To reduce the level of detail in log messages, can change the log levels in the *appsettings.Development.json* file. For more information, see [Introduction to logging](xref:fundamentals/logging).
|
||||
To reduce the level of detail in log messages, can change the log levels in the *appsettings.Development.json* file. For more information, see [Introduction to logging](xref:fundamentals/logging/index).
|
||||
|
||||
Use **SQL Server Object Explorer** to inspect the DB. Notice the addition of an `__EFMigrationsHistory` table. The `__EFMigrationsHistory` table keeps track of which migrations have been applied to the DB. View the data in the `__EFMigrationsHistory` table, it shows one row for the first migration. The last log in the preceding CLI output example shows the INSERT statement that creates this row.
|
||||
|
||||
|
@ -223,4 +223,4 @@ If the `update` command returns the error "Build failed.":
|
|||
|
||||
>[!div class="step-by-step"]
|
||||
[Previous](xref:data/ef-rp/sort-filter-page)
|
||||
[Next](xref:data/ef-rp/complex-data-model)
|
||||
[Next](xref:data/ef-rp/complex-data-model)
|
||||
|
|
|
@ -153,7 +153,8 @@ Restart=always
|
|||
RestartSec=10 # Restart service after 10 seconds if dotnet service crashes
|
||||
SyslogIdentifier=dotnet-example
|
||||
User=www-data
|
||||
Environment=ASPNETCORE_ENVIRONMENT=Production
|
||||
Environment=ASPNETCORE_ENVIRONMENT=Production
|
||||
Environment=DOTNET_PRINT_TELEMETRY_MESSAGE=false
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
|
|
@ -15,9 +15,4 @@
|
|||
<DotNetCliToolReference Include="BundlerMinifier.Core" Version="2.5.357" />
|
||||
</ItemGroup>
|
||||
|
||||
<!-- For information on Bower, see https://bower.io/ and https://docs.microsoft.com/aspnet/core/client-side/bower -->
|
||||
<Target Name="PreBuildScript" BeforeTargets="PrepareForBuild">
|
||||
<Exec Command="bower install" />
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1 +1 @@
|
|||
body{padding-top:50px;padding-bottom:20px}.body-content{padding-left:15px;padding-right:15px}.carousel-caption p{font-size:20px;line-height:1.4}.carousel-inner .item img[src$=".svg"]{width:100%}#qrCode{margin:15px}@media screen and (max-width:767px){.carousel-caption{display:none}}
|
||||
body{padding-top:50px;padding-bottom:20px}.body-content{padding-left:15px;padding-right:15px}.carousel-caption p{font-size:20px;line-height:1.4}.carousel-inner .item img[src$=".svg"]{width:100%}#qrCode{margin:15px}@media screen and (max-width:767px){.carousel-caption{display:none}}
|
Loading…
Reference in New Issue