上一页 1 2 3 4 5 6 ··· 21 下一页
摘要: @using MESModel.Enum @{ ViewBag.Title = "特殊工艺评价"; var F = @Html.F(); } @section body { @(F.Panel() .ID("MainPanel") .IsViewPort(true) .ShowBorder(fals 阅读全文
posted @ 2020-07-10 16:05 咖啡无眠 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 获取方法所属类的类名,方法名,在C#代码里面可以通过获取StackTrace来实现: using System.Diagnostics; using System.Reflection; //获取当前类名MethodBase method = new System.Diagnostics.Stack 阅读全文
posted @ 2020-07-09 17:17 咖啡无眠 阅读(2346) 评论(0) 推荐(0) 编辑
摘要: foreach: continue;:退出本次循环 break;:退出循环 return;:退出循环 List.Foreach: return;:退出本次循环 小结:list.Foreach中不能退出循环,foreach中的return;和List.Foreach中的return;用法不同 阅读全文
posted @ 2020-07-03 08:50 咖啡无眠 阅读(1127) 评论(0) 推荐(0) 编辑
摘要: 早上一个同事找到我,说他想提高系统启动的时间,就通过msconfig设置了启动最大内存和cpu个数,引起了系统蓝屏。 msconfig设置最大内存,引起系统蓝屏,无法启动解决方法导致此问题的根本原因是,内存被手动设置成最大内存,系统在启动时获取不到足够的内存引起的。可以通过命令行执行命令来去除设置的 阅读全文
posted @ 2020-06-24 10:09 咖啡无眠 阅读(2826) 评论(0) 推荐(0) 编辑
摘要: select * from Customer join PubArea on Customer.AreaID=PubArea.AreaID update Customer set REMARK='删除' from Customer join PubArea on Customer.AreaID=Pu 阅读全文
posted @ 2020-06-23 17:16 咖啡无眠 阅读(1404) 评论(0) 推荐(0) 编辑
摘要: // 打印所有 function onAllButtonClick() { $("#print div div:contains('项目号:')").html('项目号:' + F.ui.lbItem_no.getText()); $("#print div div:contains('内部合同号: 阅读全文
posted @ 2020-06-20 17:22 咖啡无眠 阅读(9397) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-06-19 13:42 咖啡无眠 阅读(219) 评论(0) 推荐(0) 编辑
摘要: C#--反射使用 Go!--BindFlags的作用 DRPrincess 2016-12-02 23:08:14 6224 收藏 2 最后发布:2016-12-02 23:08:14首发:2016-12-02 23:08:14 分类专栏: C# 版权声明:本文为博主原创文章,遵循 CC 4.0 B 阅读全文
posted @ 2020-05-21 08:38 咖啡无眠 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 在 series中添加 itemStyle : { normal: {label : {show: true}}}1在django中使用echarts折线图的完整代码 <script type="text/javascript">var dom = document.getElementById(" 阅读全文
posted @ 2020-05-20 18:30 咖啡无眠 阅读(19687) 评论(0) 推荐(1) 编辑
摘要: 一、目前EF Core的版本为V2.1 相比较EF Core v1.0 目前已经增加了不少功能。 EF Core除了常用的增删改模型操作,Sql语句在不少项目中是不能避免的。 在EF Core中上下文,可以返货DbConnection ,执行sql语句。这是最底层的操作方式,代码写起来还是挺多的。 阅读全文
posted @ 2020-05-20 09:56 咖啡无眠 阅读(561) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 21 下一页