上一页 1 2 3 4 5 6 7 8 9 10 ··· 29 下一页
摘要: Docker从入门到深入(一)基本概念和操作 Docker从入门到深入(二)Net Core使用dockerfile部署 阅读全文
posted @ 2020-07-02 16:18 向萧 阅读(97) 评论(0) 推荐(0) 编辑
摘要: class Program { static void Main(string[] args) { var services = new ServiceCollection(); ConfigureServices(services); using (ServiceProvider serviceP 阅读全文
posted @ 2020-07-02 15:28 向萧 阅读(624) 评论(0) 推荐(0) 编辑
摘要: 1、引用 System.Speech 2、代码示例 static void Main(string[] args) { var synthesizer = new SpeechSynthesizer(); synthesizer.SetOutputToDefaultAudioDevice(); sy 阅读全文
posted @ 2020-06-29 11:51 向萧 阅读(559) 评论(0) 推荐(0) 编辑
摘要: 一、什么是Docker 概念 Docker是在传统容器的基础上,进行了进一步的封装,从文件系统、网络互连到进程隔离等等,极大的简化了容器的创建和维护。使得Docker比虚拟机技术更加轻便快捷。 项目地址 https://github.com/moby/moby 二、为什么要用Docker Docke 阅读全文
posted @ 2020-06-24 16:03 向萧 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-06-24 09:40 向萧 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 用docker rmi [imageId] 删除镜像的时候,报如下错误: Error response from daemon: conflict: unable to delete 90603fd516d1 (must be forced) - image is referenced in mul 阅读全文
posted @ 2020-06-24 09:32 向萧 阅读(1957) 评论(0) 推荐(0) 编辑
摘要: 阿里云优惠活动 一、Quartz介绍 Quartz项目地址:https://github.com/quartz-scheduler/quartz 里面可以看到介绍: Quartz is a richly featured, open source job scheduling library tha 阅读全文
posted @ 2020-06-10 13:48 向萧 阅读(5962) 评论(5) 推荐(1) 编辑
摘要: 慌则乱,事情越急,越要冷静 阅读全文
posted @ 2020-06-04 11:18 向萧 阅读(182) 评论(1) 推荐(0) 编辑
摘要: 1、项目中使用的ORM是Sqlsugar。在使用.where(...).select(...)时发现一个问题 如果select(x=>new A(){})。这样是没有问题的,但是如果类A中有个属性,其类型是B,就无法查询。查询报错信息是:Unknown column 'Title' in 'fiel 阅读全文
posted @ 2020-05-25 17:41 向萧 阅读(1101) 评论(0) 推荐(0) 编辑
摘要: 一、需要引入的库: Autofac Autofac.Extensions.DependencyInjection 二、Program.cs中添加:.UseServiceProviderFactory(new AutofacServiceProviderFactory())。如下: public st 阅读全文
posted @ 2020-05-23 18:10 向萧 阅读(676) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 29 下一页