From b0b665031160d399364c5814fd987e4618d09297 Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Thu, 5 Dec 2019 14:23:27 +0800 Subject: [PATCH] Translate Data-Access document --- docs/en/docs-nav.json | 2 +- docs/zh-Hans/Data-Access.md | 11 +++++++++++ docs/zh-Hans/docs-nav.json | 1 + 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 docs/zh-Hans/Data-Access.md diff --git a/docs/en/docs-nav.json b/docs/en/docs-nav.json index b19def71ed..863290126a 100644 --- a/docs/en/docs-nav.json +++ b/docs/en/docs-nav.json @@ -257,7 +257,7 @@ }, { "text": "Data Access", - "path": "Data-Access.md" + "path": "Data-Access.md", "items": [ { "text": "Entity Framework Core Integration", diff --git a/docs/zh-Hans/Data-Access.md b/docs/zh-Hans/Data-Access.md new file mode 100644 index 0000000000..68baa6dd87 --- /dev/null +++ b/docs/zh-Hans/Data-Access.md @@ -0,0 +1,11 @@ +# 数据访问 + +ABP框架被设计为与数据库无关, 它通过[仓储](Repositories.md)和[工作单元](Unit-Of-Work.md)抽象处理来自任何类型的数据源. + +目前实现了以下数据库访问提供程序: + +* [Entity Framework Core](Entity-Framework-Core.md) (与各种[DBMS和提供程序](https://docs.microsoft.com/zh-cn/ef/core/providers/?tabs=dotnet-core-cli)一起使用.) +* [MongoDB](MongoDB.md) +* [Dapper](Dapper.md) + +在以后的版本中可能会添加更多的提供程序. \ No newline at end of file diff --git a/docs/zh-Hans/docs-nav.json b/docs/zh-Hans/docs-nav.json index e8922454cc..3c6c58cd68 100644 --- a/docs/zh-Hans/docs-nav.json +++ b/docs/zh-Hans/docs-nav.json @@ -246,6 +246,7 @@ }, { "text": "数据访问", + "path":"Data-Access.md", "items": [ { "text": "Entity Framework Core 集成",