The startup process of ASP.NET Core applications is as follows Table of Contents Startup Class Configure() Method Middleware Using Middleware [......] 继续阅读
The startup process of ASP.NET Core applications is as follows Table of Contents Startup Class Configure() Method Middleware Using Middleware [......] 继续阅读
ASP.NET Core 程序启动过程如下 目录 Startup 类 Configure() 方法 中间件 使用中间件 Configure 方法 的参数 IApplicationBuilder Extension Methods(拓展方法)--微软提供的中间件 1, Startup[......] 继续阅读
The author did not study ASP.NET, but went directly to learn ASP.NET Core. After finishing the basics of ASP.NET Core MVC, I began to learn about the[......] 继续阅读
笔者没有学 ASP.NET,直接学 ASP.NET Core ,学完 ASP.NET Core MVC 基础后,开始学习 ASP.NET Core 的运行原理。发现应用程序有一个非常主要的 “传导体” HttpContext 。 赶忙写一下笔记先。 目录 &ldqu[......] 继续阅读
Table of Contents: System.ComponentModel Attribute Namespaces and Common Classes System.ComponentModel.DataAnnotations ComponentModel - Classes Compon[......] 继续阅读
目录: System.ComponentModel 特性命名空间与常用类 System.ComponentModel.DataAnnotations ComponentModel - Classes 类 ComponentModel - Structs 结构体 ComponentModel[......] 继续阅读
The author recently studied the concept of expression trees and wrote this article to reinforce understanding. If there are any errors, please comment[......] 继续阅读
笔者最近学了表达式树这一部分内容,为了加深理解,写文章巩固知识,如有错误,请评论指出~ 表达式树的概念 表达式树的创建有 Lambda法 和 组装法。 学习表达式树需要 委托、Lambda、Func<> 基础。 表达式树 形状可以参考 二叉树。 可以把表达式树理解成 数学表达式。[......] 继续阅读
In everyday use of delegates, the following common methods are available: Method NameDescription Clone Creates a shallow copy of the d[......] 继续阅读
在日常使用委托时,有以下常用方法 方法名称说明 Clone 创建委托的浅表副本。 GetInvocationList 按照调用顺序返回此多路广播委托的调用列表。 GetMethodImpl 返回由当[......] 继续阅读
public class ValuesController : ControllerBase { // GET api/values/123 [HttpGet("{id}")] public ActionResult<string> Get(i[......]继续阅读
public class ValuesController : ControllerBase { // GET api/values/123 [HttpGet("{id}")] public ActionResult<string> Get([......]继续阅读
In a Startup class, add a static variable: readonly string MyAllowSpecificOrigins = "_myAllowSpecificOrigins"; Configure global COR[......] 继续阅读
Startup 中,添加一个静态变量 readonly string MyAllowSpecificOrigins = "_myAllowSpecificOrigins"; services 中配置全局放通 services.AddCors[......]继续阅读
Jiang Tingfu’s "Modern History of China" - Thoughts on the Humiliation History of Modern China Mr. Jiang Tingfu's scientific research in mod[......] 继续阅读
蒋廷黻著《中国近代史》**-中国近代屈辱史读后感** 蒋廷黻先生于近代中国史之科学研究,实与罗先生(罗家伦)同开风气。他为中国近代史建立了一个科学的基础,为旧中国的史学研究带来了新的方法、新的观念,是一个开山的人。 ——郭廷以 蒋廷黻(1895.12.7-1965.10.9),是中国著名历史学家、外[......] 继续阅读
[Changsun Wuji, the Twenty-Four Meritorious Officials of Lingyanshan]Best buddy of Emperor Taizong of Tang, Li Shimin Introduction to Changsun[......] 继续阅读
[凌烟阁二十四功臣之长孙无忌]唐太宗李世民的好基友 长孙无忌介绍 长孙无忌,字辅机(生卒时间:597年-659年),他一生从隋朝末年到唐高宗封武则天为皇后。长孙无忌是隋朝的长孙晟(右骁卫将军)之子,自幼被其高士廉(舅父)抚养长大,跟李世民是布衣之交。隋朝末年,李渊起兵后,无忌前去投奔,[......] 继续阅读
High-speed download site for Docker http://get.daocloud.io/#install-docker If you are using a Linux system, you can install it directly using th[......] 继续阅读
高速下载 Docker 的站点 http://get.daocloud.io/#install-docker 如果你是 linux系统,可以直接使用命令安装 笔者这里使用了 国产操作系统 Deepin ,支持一下国产系统(本教程适用其它Linux系统) 下载 Dock[......] 继续阅读