摘要: //文件转换为字节 public static byte[] File2Bytes(string path) { if (!System.IO.File.Exists(path)) { return new byte[0]; } FileInfo fi = new FileInfo(path); b 阅读全文
posted @ 2020-07-03 16:50 !opts 阅读(115) 评论(0) 推荐(0) 编辑
摘要: WITH(NOLOCK)用法select * from( SELECT case sa.ActivityTimeType when 1 then sc.EndDate else sa.EndDate end as EndDate, sa.BeginDate, si.Sort, case si.Sec 阅读全文
posted @ 2020-07-03 11:35 !opts 阅读(143) 评论(0) 推荐(0) 编辑