03 2020 档案
.net 中的async,await理解
摘要:1、async修饰的方法可理解为异步方法(必须要配合await,否则和普通方法无异)2、当async方法执行遇到await,则立即将控制权转移到async方法的调用者3、由调用者决定是否需要等待async方法执行完再继续往下执行4、await会挂起当前方法,即阻塞当前方法继续往下执行,转交控制权给调 阅读全文
posted @ 2020-03-18 19:59 雪原日暮 阅读(796) 评论(0) 推荐(0)
dbeaver pgsql连接工具
摘要:dbeaver 阅读全文
posted @ 2020-03-18 17:03 雪原日暮 阅读(2518) 评论(0) 推荐(0)
oracle 导出表结构和备注
摘要:SELECT t.table_name, t.colUMN_NAME, t.DATA_TYPE || '(' || t.DATA_LENGTH || ')', t1.COMMENTS FROM User_Tab_Cols t, User_Col_Comments t1WHERE t.table_na 阅读全文
posted @ 2020-03-12 15:58 雪原日暮 阅读(790) 评论(0) 推荐(0)
abp
摘要:The easiest way of starting a new project using ABP with ASP.NET MVC 5.x (and optionally AngularJS frontend) is to create a template on the download p 阅读全文
posted @ 2020-03-12 09:45 雪原日暮 阅读(560) 评论(0) 推荐(0)