腾讯云-ASP.NET Core+Mysql+Jexus+CDN上云实践.md Opening a Tencent Cloud Server and MySQL Key Points: Usage of ASP.NET Core and Entity Framework Core Installa[......] 继续阅读
腾讯云-ASP.NET Core+Mysql+Jexus+CDN上云实践.md Opening a Tencent Cloud Server and MySQL Key Points: Usage of ASP.NET Core and Entity Framework Core Installa[......] 继续阅读
腾讯云-ASP.NET Core+Mysql+Jexus+CDN上云实践.md 开通腾讯云服务器和Mysql 知识点: ASP.NET Core和 Entity Framework Core的使用 Linux 下 安装和配置 Mysql 数据库 通过实体生成数据库 简单 Linux 命令和 She[......] 继续阅读
[TOC] 跟同事合作前后端分离项目,自己对 WebApi 的很多知识不够全,虽说不必要学全栈,可是也要了解基础知识,才能合理设计接口、API,方便与前端交接。 晚上回到宿舍后,对 WebApi 的知识查漏补缺,主要补充了 WebAPi 的一些方法、特性等如何与前端契合,如何利用工具测试 API 、[......] 继续阅读
Collaborating with Colleagues on a Front-End and Back-End Decoupled Project I've been working with colleagues on a decoupled front-end and back-end pr[......] 继续阅读
SQLIte 操作方便,简单小巧,这里笔者就不再过多介绍,感兴趣可以到以下博文 https://blog.csdn.net/qq_31930499/article/details/80420246 文章介绍创建ASP.NET Core 程序,创建模型、上下文,生成数据库,对数据库增删查改[......] 继续阅读
SQLite is convenient to use, simple and compact. The author will not elaborate further here; those interested can refer to the following blog. https:/[......] 继续阅读
ASP.NET Core 中,可以在静态目录添加文件,直接访问就可以下载。但是这种方法可能不安全,也不够灵活。 我们可以在 Controller 控制器中 添加 一个 Action,通过此Action,即可访问服务器的任何文件。 Action 格式 public FileResult D[......]继续阅读
In ASP.NET Core, files can be added to a static directory for direct download. However, this method may not be secure or flexible enough. We can add a[......] 继续阅读
ASP.NET Core 程序启动过程如下 目录 Startup 类 Configure() 方法 中间件 使用中间件 Configure 方法 的参数 IApplicationBuilder Extension Methods(拓展方法)--微软提供的中间件 1, Startup[......] 继续阅读
The startup process of ASP.NET Core applications is as follows Table of Contents Startup Class Configure() Method Middleware Using Middleware [......] 继续阅读
笔者没有学 ASP.NET,直接学 ASP.NET Core ,学完 ASP.NET Core MVC 基础后,开始学习 ASP.NET Core 的运行原理。发现应用程序有一个非常主要的 “传导体” HttpContext 。 赶忙写一下笔记先。 目录 &ldqu[......] 继续阅读
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[......] 继续阅读
示例源码下载地址 https://qcloud.coding.net/api/project/3915794/files/4463836/download 项目地址 https://dev.tencent.com/u/whuanle/p/asp.netcore_file_up[......] 继续阅读
Example source code download link https://qcloud.coding.net/api/project/3915794/files/4463836/download Project address: https://dev.tence[......] 继续阅读
首先,你需要在 Mac 上安装好 Docker 下载地址 https://download.docker.com/mac/stable/Docker.dmg 或者查看别人的 安装教程 怎么安装这里就不在赘述了。 打开 Docker 输入命令 do[......]继续阅读
First, you need to install Docker on your Mac Download link: https://download.docker.com/mac/stable/Docker.dmg Or check someone else's installation tu[......] 继续阅读
首先说明,视频教程、源码并非本人原创 本人将项目分割开,并写了一些说明。 该视频教程 地址 https://study.163.com/course/courseMain.htm?courseId=1005955006 原作者 笔者正在学 ASP.NET Core ,发现这位[......] 继续阅读
First, I would like to clarify that the video tutorial and source code are not my original works. I have split the project and written some explanat[......] 继续阅读
Using app.UseFileServer In public void Configure(){} modify or add 1 app.UseFileServer(new FileServerOptions() 2 { 3[......]继续阅读
使用app.UseFileServer 在 public void Configure(){}中,修改或添加 1 app.UseFileServer(new FileServerOptions() 2 { 3 FileProvide[......]继续阅读