摘要: 问 题: public partial class ProcessContext : DbContext { static ProcessContext() { Database.SetInitializer<ProcessContext>(null); } public ProcessContex 阅读全文
posted @ 2020-04-24 13:44 CelonY 阅读(1188) 评论(0) 推荐(0) 编辑
摘要: nuget 安装 NSwag.AspNetCore包 setuup配置 services.AddSwaggerDocument(option = option.Title = "ContentTables接口文档" ); //注册Swagger 服务 app.UseAuthorization(); 阅读全文
posted @ 2020-04-04 18:59 CelonY 阅读(286) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/GuZhenYin/p/7337646.html 阅读全文
posted @ 2020-04-04 11:41 CelonY 阅读(127) 评论(0) 推荐(0) 编辑
摘要: ADB0030: Deployment failedMono.AndroidTools.RequiresUninstallException: The installed package is incompatible. Please manually uninstall and try again 阅读全文
posted @ 2020-03-25 16:09 CelonY 阅读(195) 评论(0) 推荐(0) 编辑
摘要: JavaScript数组操作: 1、如何根据id找到删除这项的索引 2、直接调用数组的splice方法 this.list.some((item,i) => { if (item.id = id) this.list.splice(i, 1) return true; }) var index = 阅读全文
posted @ 2020-03-24 21:06 CelonY 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 创建项目目录 mkdir vue-next-sample 初始化package.json文件 npm init --yes 安装Vue3.0模块 npm i vue@next 安装Webpack相关模块 npm i webpack webpack-cli webpack-dev-server --s 阅读全文
posted @ 2020-03-17 21:01 CelonY 阅读(509) 评论(0) 推荐(0) 编辑
摘要: 初始化仓库 git init 加入文件 git add . git add 文件名 提交代码到本地仓库 git commit -m "提交说明内容" 添加远程仓库地址 git remote add origin [url] 推送代码到远程仓库 git push -u origin master gi 阅读全文
posted @ 2020-03-17 16:23 CelonY 阅读(81) 评论(0) 推荐(0) 编辑
摘要: https://www.yuque.com/yuejiangliu/dotnet/ggh9yb 需要三个包: dotnet add package Microsoft.EntityFrameworkCore.Design dotnet add package Pomelo.EntityFramewo 阅读全文
posted @ 2020-03-13 11:10 CelonY 阅读(1321) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/c200d27f672e 阅读全文
posted @ 2020-03-03 09:18 CelonY 阅读(229) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/sxy_student/article/details/104603405 阅读全文
posted @ 2020-03-02 10:40 CelonY 阅读(765) 评论(0) 推荐(0) 编辑