欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

.NET Core API后台架构搭建

程序员文章站 2022-04-18 11:54:01
这是一个.Net Core API搭建的后台架构,也是我完成公司系统重构后,重新写的一个学习案例。写这篇博文是想看看自己是否真的掌握了,另外也希望对读者有一定的帮助。 ......

asp.net core api后台架构搭建

项目文件:https://files.cnblogs.com/files/zm191018/webapi.zip

本篇可以了解到:

  • 依赖注入
  • dapper orm框架

第一步:目录文件构建

新建两个类库:

 .NET Core API后台架构搭建

 

 

 .NET Core API后台架构搭建

 

添加好之后,文件构建如下:

 .NET Core API后台架构搭建

 

第二步:下载oracle.managerdataaccess.core、dapper程序包。

 .NET Core API后台架构搭建

 

 

第三步:开发db connection

l  新建接口iconnectionprovider、idbcontext。idbcontext实现idisposable。

 .NET Core API后台架构搭建

 

 .NET Core API后台架构搭建

 

l  connectionprovider、dbcontext分别实现接口iconnectionprovider、idbcontext

 .NET Core API后台架构搭建

 

 .NET Core API后台架构搭建

 

 

l  再新建一个dbconnectionobj类。因为是使用dapper orm框架,因此需要提供一个idbconnection对象。也就是说,这个类用来提供idbconnection对象的。

 .NET Core API后台架构搭建

 

 

完成db connection的开发。

 .NET Core API后台架构搭建

对于为什么要将connectionprovider单独拿出来,是因为如果更改使用不同数据库,那么改动该类即可。用途就体现出来了。

第四步:根据数据库表,编写model。

 .NET Core API后台架构搭建

 

 .NET Core API后台架构搭建

第五步:开发table repository。也就是定义方法使用dapper操作数据库进行数据的增删改查。

l  创建接口iapitestcontext

 .NET Core API后台架构搭建

 

 

l  创建apitestcontext实现接口iapitestcontext

      insert

 .NET Core API后台架构搭建

 

 

      delete

 .NET Core API后台架构搭建

 

 

      modify

 .NET Core API后台架构搭建

 

 

      query

 .NET Core API后台架构搭建

 

 

第六步:开发services register。这一部分是将table repository写的服务,在这里注册供biz层使用,也就是说,biz实例化该类之后即可调用table repository中的方法。

创建接口iapitestregister:

 .NET Core API后台架构搭建

 

创建apitestregister实现dbcontext,iapitestregister

.NET Core API后台架构搭建

 

 

第七步:开发services biz。主要是调用store层的方法进而获取数据。

 .NET Core API后台架构搭建

 

 

第八步:开发logic biz

 .NET Core API后台架构搭建

 

 

第九步:编写controller。对logic的调用

 .NET Core API后台架构搭建

 

 

第十:通过program类的方法,加载json文件。因此需要如下配置:

.NET Core API后台架构搭建

 

 

十一、在startup类的configureservices方法中读取json数据,并调用方法完成服务的注入。(个人理解是将服务注入到ioc容器)

 .NET Core API后台架构搭建

 

 

十二、添加方法用于管理服务的声明周期。

 .NET Core API后台架构搭建

十三、在appsettings.development.json文件中添加如下:

 .NET Core API后台架构搭建

十四、成功。

 .NET Core API后台架构搭建

 

 .NET Core API后台架构搭建