上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页
摘要: string.Join(",", Table1.Select(o => o.Note).Where(o => !string.IsNullOrWhiteSpace(o)));//排除了note为null或为空格字符的情况 阅读全文
posted @ 2019-10-11 10:02 jasonlai2016 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1.JDK-13下载安装及环境变量配置 直接去官网下载 附下载链接:https://www.oracle.com/technetwork/java/javase/downloads/index.html 2. 3.安装下一步即可,记住安装路径即可。 完后准备配置环境变量 “此电脑”,选择属性->高级 阅读全文
posted @ 2019-10-10 15:35 jasonlai2016 阅读(556) 评论(0) 推荐(0) 编辑
摘要: public class Test { public static void main(String[] args) { int age = 6; //先自加,再使用(age先自加1,然后再打印age=7,此时age的值在内存中是7) System.out.println("age=" + ++ag 阅读全文
posted @ 2019-10-10 14:21 jasonlai2016 阅读(667) 评论(0) 推荐(0) 编辑
摘要: 异常详细信息: System.ArgumentNullException: 值不能为 null。参数名: source 其实问题那就出在 Select() 方法,在 Select 上按 F12 查看定义 public static IEnumerable<TResult> Select<TSourc 阅读全文
posted @ 2019-10-08 09:57 jasonlai2016 阅读(5003) 评论(0) 推荐(0) 编辑
摘要: 方法1: document.getElementById('iframeId').contentWindow.location.reload(true); 方法2: document.getElementById('iframeId').src=url; 方法3: $("#iframeId").attr('src', url); 阅读全文
posted @ 2019-09-05 14:18 jasonlai2016 阅读(1443) 评论(0) 推荐(0) 编辑
摘要: window.parent.document.getElementsByTagName('iframe')[0].contentWindow.document.getElementById('id') 阅读全文
posted @ 2019-09-05 09:51 jasonlai2016 阅读(474) 评论(0) 推荐(0) 编辑
摘要: 添加外键约束(关联字段要用括号括起来) -- ALTER TABLE 从表 -- ADD CONSTRAINT 约束名 FOREIGN KEY (关联字段) references 主表(关联字段); --例如: ALTER TABLE BusinessBills ADD CONSTRAINT FK_BusinessBillPackageBusinessBil... 阅读全文
posted @ 2019-08-30 09:48 jasonlai2016 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 在EF里面,使用IQueryable和IEnumerable可以延迟加载 list.Select() 改为: list.AsEnumerable().Select 阅读全文
posted @ 2019-08-29 13:51 jasonlai2016 阅读(259) 评论(0) 推荐(0) 编辑
摘要: using System; using System.IO; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; namespace WindowsFormsApplication2 { public partial class Form2 : Form { ... 阅读全文
posted @ 2019-08-22 18:00 jasonlai2016 阅读(1011) 评论(0) 推荐(0) 编辑
摘要: 引用: Microsoft.Extensions.ConfigurationMicrosoft.Extensions.Configuration.FileExtensionsMicrosoft.Extensions.Configuration.Json 创建json文件: 设置json文件 阅读全文
posted @ 2019-08-21 17:10 jasonlai2016 阅读(202) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页