摘要: //效率,dapper add list 8000条 40秒,它只要1秒多 public static int SqlBulkCopy<T>(this DbConnection conn, List<T> list) where T : Key { var type = typeof(T); var 阅读全文
posted @ 2021-11-12 16:17 212的s 阅读(648) 评论(0) 推荐(0) 编辑
摘要: //说明//使用场景:对接api,返回json结果,直接转换C# class//如何使用:复制下面js代码在浏览器控制台执行 ` "order_item_id": "28504637", "item_id": "3695819", "item_title": "小茵熊物料包 测试链接勿拍", "cu 阅读全文
posted @ 2021-11-12 16:09 212的s 阅读(208) 评论(0) 推荐(0) 编辑
摘要: select spIdfrom master..SysProcesseswhere db_Name(dbID) = 'Tb_axxxxx'and spId <> @@SpIdand dbID <> 0 --先查后解除 declare @spid intSet @spid = 149 --锁表进程de 阅读全文
posted @ 2021-11-12 16:07 212的s 阅读(217) 评论(0) 推荐(0) 编辑
摘要: //引用IWshRuntimeLibrary COM组件-Windows Script Host Object Model /// <summary> /// 创建快捷方式的类 /// </summary> /// <remarks></remarks> public class ShortCutH 阅读全文
posted @ 2021-11-12 16:06 212的s 阅读(295) 评论(0) 推荐(0) 编辑
摘要: class WindowHookerManager { static WindowHooker hooker = new WindowHooker(); public static void SetAllFormIcon() { hooker.OnHookControl += (o, e) => { 阅读全文
posted @ 2021-11-12 16:05 212的s 阅读(477) 评论(0) 推荐(0) 编辑
摘要: with a as( select * from( select 1 userId , '天津' province union select 1 userId , '北京' union select 1 userId , '上海' union select 2 userId , '北京' union 阅读全文
posted @ 2021-11-12 16:04 212的s 阅读(163) 评论(0) 推荐(0) 编辑
摘要: ps:提高了编程效率,而且相当好用,自己随时可以添加新的扩展 public static class CommomExtentions { public static bool IsNullOrEmpty(this string str) { return string.IsNullOrEmpty( 阅读全文
posted @ 2021-11-12 16:04 212的s 阅读(28) 评论(0) 推荐(0) 编辑
摘要: Bitmap b = new Bitmap(Server.MapPath(ppath)); Stream ms = new MemoryStream(); b.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg); 原文: https://www.cnb 阅读全文
posted @ 2021-11-12 16:02 212的s 阅读(307) 评论(0) 推荐(0) 编辑
摘要: with tt as( select 'A' product, 100 price, '2021第1季度' time union all select 'A' product, 777 price, '2021第1季度' time union all select 'A' product, 111 阅读全文
posted @ 2021-11-12 16:01 212的s 阅读(26) 评论(0) 推荐(0) 编辑
摘要: this.dataGridView1.BindingContext[this.dataGridView1.DataSource].Position = 5 阅读全文
posted @ 2021-11-12 16:01 212的s 阅读(745) 评论(0) 推荐(1) 编辑
摘要: Win 键+R calc:计算器 notepad:记事本 mspaint:画图 cmd:控制台 control:控制面板 desk.cpl:打开控制面板中的桌面设置 main.cpl:鼠标设置 inetcpl.cpl:Internet 属性 ncpa.cpl:网络连接 sysdm.cpl:系统属性 阅读全文
posted @ 2021-11-12 16:00 212的s 阅读(481) 评论(0) 推荐(0) 编辑
摘要: Alt+Tab:窗口切换 Alt+回车:查看所选文件属性 Win 键 + 数字:打开/最小化 任务栏对应程序 Win 键+Shift+Esc: 打开任务管理器 Win 键+ 空格:切换输入法 Win 键+ D: 最小化所有窗口,快速查看桌面,再按一次可以复原 Win 键+方向键:用过都知道,窗口动来 阅读全文
posted @ 2021-11-12 16:00 212的s 阅读(525) 评论(0) 推荐(0) 编辑
摘要: function addScriptTag(src) { var script = document.createElement('script'); script.setAttribute("type","text/javascript"); script.src = src; document. 阅读全文
posted @ 2021-11-12 15:58 212的s 阅读(69) 评论(0) 推荐(0) 编辑
摘要: public Image GetHttpImage(string url) { var client = new HttpClient(); var uri = new Uri(Uri.EscapeUriString(url)); byte[] urlContents = client.GetByt 阅读全文
posted @ 2021-11-12 15:57 212的s 阅读(1046) 评论(0) 推荐(0) 编辑
摘要: //设置左上角到中心点 g.TranslateTransform(int.Parse(x), int.Parse(y)); //旋转角度 g.RotateTransform(int.Parse("90")); //还原左上角 g.TranslateTransform(-int.Parse(x),- 阅读全文
posted @ 2021-11-12 15:56 212的s 阅读(303) 评论(0) 推荐(0) 编辑
摘要: static void Main() { //设置应用程序处理异常方式:ThreadException处理 Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException); //处理UI线程异常 Applica 阅读全文
posted @ 2021-11-12 15:55 212的s 阅读(257) 评论(0) 推荐(0) 编辑
摘要: nuget 安装 DataMatrix.net //示例 DmtxImageEncoder Die = new DmtxImageEncoder(); DataMatrix.net.DmtxImageEncoderOptions option = new DmtxImageEncoderOption 阅读全文
posted @ 2021-11-12 15:54 212的s 阅读(187) 评论(0) 推荐(0) 编辑
摘要: public static class Ex{ public static T2 Map< T2>(this object t1) where T2 : class { var t1_Pinfos = t1.GetType().GetProperties(); var t2_Pinfos = typ 阅读全文
posted @ 2021-11-12 15:54 212的s 阅读(22) 评论(0) 推荐(0) 编辑
摘要: //调用方式 var frm = new MyForm().Instance(); public static class ExFrm { static Dictionary<string, Form> forms = new Dictionary<string, Form>(); /// <sum 阅读全文
posted @ 2021-11-12 15:53 212的s 阅读(24) 评论(0) 推荐(0) 编辑
摘要: $("#父窗口元素ID",window.parent.document) window.parent.document.getElementById("父窗口元素ID") 阅读全文
posted @ 2021-11-12 15:51 212的s 阅读(230) 评论(0) 推荐(0) 编辑