摘要:
阿里云优惠活动 一、Quartz介绍 Quartz项目地址:https://github.com/quartz-scheduler/quartz 里面可以看到介绍: Quartz is a richly featured, open source job scheduling library tha 阅读全文
摘要:
1、项目中使用的ORM是Sqlsugar。在使用.where(...).select(...)时发现一个问题 如果select(x=>new A(){})。这样是没有问题的,但是如果类A中有个属性,其类型是B,就无法查询。查询报错信息是:Unknown column 'Title' in 'fiel 阅读全文
摘要:
一、需要引入的库: Autofac Autofac.Extensions.DependencyInjection 二、Program.cs中添加:.UseServiceProviderFactory(new AutofacServiceProviderFactory())。如下: public st 阅读全文
摘要:
var totalPage = (totalNumber + pageSize - 1) / pageSize; 阅读全文
摘要:
1、不使用第三方工具的情况下比较SqlServer两个表的表结构 https://www.mssqltips.com/sqlservertip/4824/easy-way-to-compare-sql-server-table-schemas/ 2、比较表结构和表数据的各种方法 https://co 阅读全文
摘要:
1、打开hyper管理器,新建虚拟机,系统选择下载好的CentOs。 创建过程自行搜索 创建完成后: 2、Centos中安装docker、git等 3、VS新建一个web项目 修改下html显示的内容:本地运行这个项目: 4、添加Dockerfile文件 如果Dockerfile的位置不和sln文件 阅读全文
摘要:
public enum MidpointRounding Fields TABLE 1 AwayFromZero 1 When a number is halfway between two others, it is rounded toward the nearest number that i 阅读全文
摘要:
1、核心逻辑(为了测试方便,路径直接写死了): public static void TemplateWrite<T>(List<T> datas, int startRow = 2, string targetPath = @"D:\导出excel测试.xlsx", string template 阅读全文
摘要:
ctrl+z #中断当前的安装显示 ps -ef | grep yum #查找当前yum相关的进程 kill -9 进程号(pid) #杀掉进程 阅读全文