摘要: 1 下载安装32位ODBC驱动 https://downloads.mysql.com/archives/c-odbc/ 2 设置ODCC驱动 3 设置sqlserver链接服务器 设置完成 阅读全文
posted @ 2020-12-27 13:12 CelonY 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Docker中使用Mysql 拉取镜像docker pull mysql:version 运行Mysql docker run -dit -p 3306:3306 --name mysql -e MYSQL_ROOT_PASSWORD=123456 mysql:latest 参数列表 -dit -p 阅读全文
posted @ 2020-12-26 20:13 CelonY 阅读(65) 评论(1) 推荐(0) 编辑
摘要: https://www.cnblogs.com/zyx321/p/6491276.html System.Text.StringBuilder res = new System.Text.StringBuilder(); res.Append(" <?xml version='1.0' encodi 阅读全文
posted @ 2020-11-18 17:21 CelonY 阅读(1453) 评论(0) 推荐(0) 编辑
摘要: 1、安装identityserver模板 dotnet new -i IdentityServer4.Templates 阅读全文
posted @ 2020-11-10 22:54 CelonY 阅读(64) 评论(0) 推荐(0) 编辑
摘要: mvm clean 清除编译文件 mvn test 测试 mvn complite 编译 mvn package 打包 mvn install 安装 mvn deploy 发布 项目对象模型 阅读全文
posted @ 2020-09-26 15:32 CelonY 阅读(99) 评论(0) 推荐(0) 编辑
摘要: MvcLocalization.HomeController.fr.resx 资源文件内容 public class Startup { public void ConfigureServices(IServiceCollection services) { services.AddLocaliza 阅读全文
posted @ 2020-09-23 15:46 CelonY 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 1、配置Setup public void ConfigureServices(IServiceCollection services) { services.Configure<JwtIssuerOptions>(options => { options.Issuer = "SimpleServe 阅读全文
posted @ 2020-09-23 11:41 CelonY 阅读(167) 评论(1) 推荐(0) 编辑
摘要: ubuntu国内下载镜像 http://www.oschina.net/p/ubuntu http://releases.ubuntu.com/ http://mirrors.163.com/ubuntu-releases/14.04/ 阅读全文
posted @ 2020-07-22 00:51 CelonY 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 一、关键字(不能直接作为标识符使用) 类相关:class base new (其他修饰符) abstract virtual override delegate sealed extern void readonly(定义只读字段)static 在switch语句或泛型代码中使用:default 接 阅读全文
posted @ 2020-05-16 22:52 CelonY 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 1、net下配置使用 1)nuget管理器添加log4net包引用 2)配置web.config <configuration> <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSec 阅读全文
posted @ 2020-05-16 17:10 CelonY 阅读(142) 评论(0) 推荐(0) 编辑