Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
yekalkan committed Jun 26, 2019
2 parents d7b080a + e755c1f commit c475f25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/zh-Hans/Getting-Started-AspNetCore-Application.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace BasicAspNetCoreApplication

``AppModule`` 是应用程序启动模块的好名称(建议你的启动模块也使用这个命名).

ABP的包定义了这个模块类,模块可以依赖其它模块.在上面的代码中 ``AppModule`` 依赖于 ``AbpAspNetCoreMvcModule`` (模块存在于Volo.Abp.AspNetCore.Mvc包中). 安装新的ABP的包后添加``DependsOn``是很非常常见的做法.
ABP的包定义了这个模块类,模块可以依赖其它模块.在上面的代码中 ``AppModule`` 依赖于 ``AbpAspNetCoreMvcModule`` (模块存在于Volo.Abp.AspNetCore.Mvc包中). 安装新的ABP的包后添加``DependsOn``是很常见的做法.

我们在此模块类中配置ASP.NET Core管道,而不是Startup类中.

Expand Down Expand Up @@ -99,7 +99,7 @@ namespace BasicAspNetCoreApplication

### Hello World!

上面的应用程序什么都不没有做,让我们创建一个MVC控制器实现一些功能:
上面的应用程序没有什么功能,让我们创建一个MVC控制器实现一些功能:

````C#
using Microsoft.AspNetCore.Mvc;
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-Hans/Startup-Templates/Mvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ ABP是一个模块化的框架,理想的设计是让每个模块都有自己的

> 这个项目有自己的 `appsettings.json` 文件. 所以如果要更改数据库连接字符串,请记得也要更改此文件.
初始化种子数据很很要,ABP具有模块化的种子数据基础设施. 种子数据的更多信息,请参阅[文档](../Data-Seeding.md).
初始化种子数据很重要,ABP具有模块化的种子数据基础设施. 种子数据的更多信息,请参阅[文档](../Data-Seeding.md).

虽然创建数据库和应用迁移似乎只对关系数据库有用,但即使您选择NoSQL数据库提供程序(如MongoDB),也会生成此项目. 这时,它会为应用程序提供必要的初始数据.

Expand Down

0 comments on commit c475f25

Please sign in to comment.