C#
文章平均质量分 62
-
林一怂儿
这个作者很懒,什么都没留下…
展开
-
Asp .NetCore 微信订阅号自动回复之文本篇
入门指引🐜我只是代码的搬运工~Docker 安装 https://www.cnblogs.com/linyisonger/p/13964825.htmldocker-compose 安装 https://www.cnblogs.com/linyisonger/p/13964931.htmlNginx 安装 https://blog.csdn.net/linyisonger/article/details/123569798Frp 配置 https://blog.csdn.net/linyisonger/.原创 2022-06-28 14:38:34 · 1331 阅读 · 0 评论 -
Asp .NetCore 微信小程序获取AccessToken、订阅消息
微信开放文档 https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/subscribe-message/subscribeMessage.addTemplate.html环境.Net Core 6.0工具Visual Studio 2022微信开发者工具效果至于样式效果取决于模板选择流程可能大概也许流程是这样子的,看看就行了,不必要当真🤭。#mermaid-svg-m0w1gqktUw7k.原创 2022-04-25 21:24:38 · 1696 阅读 · 0 评论 -
Asp .NetCore 微信小程序授权登录、获取用户信息
人生最高理想,在求达于真理。——李大钊官方文档https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/login/auth.code2Session.html环境.Net Core 6.0工具Visual Studio 2022微信开发者工具流程新建项目我这里是这样新建的,当然也可以使用Visual Studio中的可视化新建。dotnet new webapi --name AspNe.原创 2022-04-13 19:36:15 · 5057 阅读 · 1 评论 -
Asp .NetCore Jwt授权登录
命运这种东西,生来就是要被踏于足下的,如果你还未有力量反抗它,只需怀着勇气等待。环境.Net Core 6.0工具Visual Studio 2022流程新建项目我这里是这样新建的,当然也可以使用Visual Studio中的可视化新建。dotnet new webapi --name AspNetCoreJwtAuthorize添加依赖编辑.csproj文件<Project Sdk="Microsoft.NET.Sdk.Web"> <Proper.原创 2022-04-11 17:06:30 · 967 阅读 · 0 评论 -
Asp .NetCore 支付宝网页授权登录
人这一生不必太较真,苦了自己怨了别人,爱情无需刻意去把握,越是想抓牢自己的爱情,反而容易失去自我。🧋文档官方文档 算是比较清晰明了的文档啦环境.Net Core 6.0工具Visual Studio 2022支付宝开放平台开发助手流程以观看的角度我喜欢把代码放在前面界面的操作放在后边新建项目我这里是这样新建的,当然也可以使用Visual Studio中的可视化新建。dotnet new webapi --name AlipayWebsiteAuthorizedLo.原创 2022-03-31 16:30:05 · 1079 阅读 · 0 评论 -
Asp .NetCore 使用EFCore连接MySQL数据库
自己要先看得起自己,别人才会看得起你。😉环境.Net Core 6.0工具Visual Studio 2022流程新建项目我这里是这样新建的,当然也可以使用Visual Studio中的可视化新建。dotnet new webapi --name AspNetCoreConnectionMySQL添加依赖编辑.csproj文件<Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> &.原创 2022-03-24 17:34:07 · 2949 阅读 · 2 评论 -
C# 上传文件过大引起的报错
操作环境Asp .Net Core 5.0错误日志Failed to read the request form. Request body too large.解决方法参照 https://www.cnblogs.com/zhang-wenbin/p/10412442.html修改Startup.cs文件public void ConfigureServices(IServiceCollection services){ services.AddControllers();原创 2021-10-25 10:06:14 · 1198 阅读 · 0 评论 -
C# EntityFrameworkCore代码更新数据库
参照视频 https://www.bilibili.com/video/BV1XJ411q7yy引入包using Microsoft.Extensions.DependencyInjection;using Microsoft.EntityFrameworkCore;using Microsoft.Extensions.Logging;修改Program.cs文件 public static void Main(string[] args) { var host = Cr.原创 2021-10-25 08:42:08 · 387 阅读 · 0 评论 -
VisualStudio_快捷键
删除所有未使用的命名空间引用1.Ctrl+R2.Ctrl+G注释选中行1.Ctrl+K2.Ctrl+C取消对选中的注释1.Ctrl+K2.Ctrl+U原创 2018-10-15 09:44:34 · 179 阅读 · 0 评论 -
C#_Asp.Net Core使用
Asp .Net Core EF MySql 数据库 表建模型 命令行dotnet ef dbcontext scaffold "server=localhost;uid=root;pwd=root;database=world" "Pomelo.EntityFrameworkCore.Mysql" -o Models原创 2018-08-16 09:11:36 · 996 阅读 · 0 评论 -
C#_C#6简单使用
using System;using System.Collections.Generic;namespace Learn{ using Learn5; using Learn6; class Program { static void Main(string[] args) { Learn5.Test ...原创 2018-08-14 14:14:26 · 1001 阅读 · 0 评论 -
C#_基础学习
目录类型转换枚举结构体数组 冒泡排序数组长度更改字符串using System;namespace FristLearn{ class Program { static void Main(string[] args) { byte a = 1; int b = 255...原创 2018-08-01 11:24:49 · 865 阅读 · 0 评论 -
C#_基础学习
using System;namespace FristLearn{ class Program { static void Main(string[] args) { //goto使用(死循环) //int a = 0; //goto skip;//跳转到sikp标签 ...原创 2018-07-26 14:35:01 · 1158 阅读 · 0 评论 -
C#_Socket_Tcp同步传输
Tcp Clientusing System;using System.Text;using System.Net.Sockets;using System.Net;namespace TCPClient{ class Program { static void Main(string[] args) { Soc...转载 2018-07-25 22:36:18 · 1488 阅读 · 0 评论 -
C#_基础计算
using System;using System.Collections.Generic;namespace FirstLearn{ //定义类 class Program { static void Main(string[] args) { int a = 1; int b = ...原创 2018-07-05 13:12:54 · 1057 阅读 · 0 评论 -
C#_基础类型
//引入命名空间using System;//定义命名空间namespace FirstLearn{ //定义类 class Program { static int age;//整数 static string name;//字符串 static char gender;//字符 static fl...原创 2018-07-05 10:14:36 · 939 阅读 · 0 评论