当前位置:网站首页>在 .NET 6 中使用 Startup.cs 更简洁的方法
在 .NET 6 中使用 Startup.cs 更简洁的方法
2022-07-06 03:39:00 【dotNET跨平台】
如果您在关注 .NET 6,那么您应该知道,在 .NET 6 项目中,没有 Startup.cs 文件,现在使用了 Program.cs 文件来完成统一的配置。
我之前发了一篇使用在 .NET 6 项目中使用 Startup.cs 的文章。
能否能进一步改进,让它变得更好呢?当然可以,接下来,我会展示一种更为简洁的方法。
为了让代码看上去更简洁,我使用了扩展方法。在 .NET 6 中,使用WebApplicationBuilder 构建程序。所以,我们为 WebApplicationBuilder 和 WebApplication 创建扩展方法。
首先,创建一个静态类 RegisterServiceExtensions,然后定义 RegisterServices 静态方法。然后把 Program.cs 里面注册服务的代码迁移到这里,如下
接下来,我们创建另外一个静态类 RegisterMiddlewareExtensions, 然后定义静态方法 RegisterServices,并把 Program.cs 里面的注册中间件的代码迁移到这里。
最后,更新项目的 Program.cs 使用这些扩展方法。
或者,直接使用一行代码完成这些工作。
现在,代码看起来更简洁、可读,且易于管理。
END
边栏推荐
- ASU & OSU | model based regularized off-line meta reinforcement learning
- Overview of super-resolution reconstruction of remote sensing images
- 简述C语言中的符号和链接库
- 2.1 rtthread pin设备详解
- LTE CSFB test analysis
- 【Qt5】Qt QWidget立刻出现并消失
- [analysis of variance] single factor analysis and multi factor analysis
- Blue Bridge Cup - Castle formula
- Blue style mall website footer code
- JS音乐在线播放插件vsPlayAudio.js
猜你喜欢
深入刨析的指针(题解)
2.13 weekly report
多项目编程极简用例
Computer graduation project asp Net fitness management system VS development SQLSERVER database web structure c programming computer web page source code project
1. New project
Teach you to build your own simple BP neural network with pytoch (take iris data set as an example)
暑期刷题-Day3
Map sorts according to the key value (ascending plus descending)
Svg drag point crop image JS effect
[Li Kou] the second set of the 280 Li Kou weekly match
随机推荐
Suggestions for new engineer team members
IPv6 comprehensive experiment
暑期刷题-Day3
An article will give you a comprehensive understanding of the internal and external components of "computer"
MPLS experiment
【SLAM】ORB-SLAM3解析——跟踪Track()(3)
JS music online playback plug-in vsplayaudio js
pytorch加载数据
给新人工程师组员的建议
多项目编程极简用例
MADDPG的pythorch实现——(1)OpenAI MADDPG环境配置
Pointer for in-depth analysis (problem solution)
SAP ALV颜色代码对应颜色(整理)
The solution of permission denied (750 permissions should be used with caution)
Getting started with applet cloud development - getting user search content
数据分析——seaborn可视化(笔记自用)
Idea push rejected solution
User perceived monitoring experience
BUAA喜鹊筑巢
Image super-resolution using deep convolutional networks(SRCNN)解读与实现