摘要:
频繁的操作导致数据库日志越来越大,于是需要清理一哈 USE [master] GO DBCC loginfo('数据库名称') GO EXEC sp_removedbreplication '数据库名称' GO ALTER DATABASE 数据库名称 SET RECOVERY SIMPLE WIT 阅读全文
摘要:
安装好DocumentFormat.OpenXml后,准备好一个docx文件 using DocumentFormat.OpenXml.Drawing.Wordprocessing; using DocumentFormat.OpenXml.Packaging; using DocumentForm 阅读全文
摘要:
将PDF中含有的图片压缩大小并转成灰度图,让PDF文件大幅下降 nuget 安装 iTextSharp using iTextSharp.text.pdf; using System; using System.Collections.Generic; using System.Drawing; u 阅读全文