12 2019 档案

只有注册用户登录后才能阅读该文。
posted @ 2019-12-19 00:15 b̶i̶n̶g̶.̶ 阅读(8) 评论(0) 推荐(0) 编辑
摘要://https全局配置 ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; ServicePointManager.ServerCertificateValidationCallback = (sender, certificate, chain, errors) => true; 阅读全文
posted @ 2019-12-18 18:52 b̶i̶n̶g̶.̶ 阅读(269) 评论(0) 推荐(0) 编辑
摘要:还可以这样子求Unix时间戳: (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000 原文链接:https://www.cnblogs.com/yaosj/p/11230626.html 阅读全文
posted @ 2019-12-17 21:27 b̶i̶n̶g̶.̶ 阅读(249) 评论(0) 推荐(0) 编辑
摘要:db.createUser({user: "admin",pwd: "xxx",roles: ["root"]}); 阅读全文
posted @ 2019-12-17 19:21 b̶i̶n̶g̶.̶ 阅读(243) 评论(0) 推荐(0) 编辑
摘要://1.创建修改的 实体对象 var model = new BlogArticle(); model.AId = 12; model.ATitle = "新的数据"; model.AContent = "新的数据~~~~~"; //2.添加到EF管理容器中,并获取 实体对象 的伪包装类对象 var 阅读全文
posted @ 2019-12-04 10:33 b̶i̶n̶g̶.̶ 阅读(455) 评论(0) 推荐(0) 编辑