12 2019 档案
摘要://https全局配置 ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; ServicePointManager.ServerCertificateValidationCallback = (sender, certificate, chain, errors) => true;
阅读全文
摘要:还可以这样子求Unix时间戳: (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000 原文链接:https://www.cnblogs.com/yaosj/p/11230626.html
阅读全文
摘要:db.createUser({user: "admin",pwd: "xxx",roles: ["root"]});
阅读全文
摘要://1.创建修改的 实体对象 var model = new BlogArticle(); model.AId = 12; model.ATitle = "新的数据"; model.AContent = "新的数据~~~~~"; //2.添加到EF管理容器中,并获取 实体对象 的伪包装类对象 var
阅读全文