上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 40 下一页
摘要: var oScript = document.createElement('script'); oScript.type = 'text/javascript'; oScript.src = "xx.js"; /* ** script标签的onload和onreadystatechange事件 ** 阅读全文
posted @ 2020-04-22 19:53 b̶i̶n̶g̶.̶ 阅读(1231) 评论(0) 推荐(0) 编辑
摘要: let a = undefined; let b = null; let c = ''; let d = 0; let e = {}; let f = []; if (a) { console.log("undefined 能过"); } else { console.log("undefined 阅读全文
posted @ 2020-04-22 19:05 b̶i̶n̶g̶.̶ 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 原文:https://blog.csdn.net/qq_27461747/article/details/89441778 阅读全文
posted @ 2020-04-19 23:40 b̶i̶n̶g̶.̶ 阅读(278) 评论(0) 推荐(0) 编辑
摘要: Detached:对象存在,但未由对象服务跟踪。在创建实体之后、但将其添加到对象上下文之前,该实体处于此状态;Unchanged:自对象加载到上下文中后,或自上次调用 System.Data.Objects.ObjectContext.SaveChanges() 方法后,此对象尚未经过修改;Adde 阅读全文
posted @ 2020-04-01 23:29 b̶i̶n̶g̶.̶ 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 1.在创建索引的时候,如果索引中的数据列只有一个,那么不管是升序还是降序的定义,在查询中使用成本都是一样的。 2.如果索引中的数据列有多个,那么每一个列的升序和降序就非常的重要,如果在查询中的列的排序和索引中定义的不一样,成本就很大,反正,就很小。 原文出处:http://blog.chinauni 阅读全文
posted @ 2020-04-01 23:08 b̶i̶n̶g̶.̶ 阅读(695) 评论(0) 推荐(0) 编辑
摘要: 一、事务的并发问题 1、脏读:事务A读取了事务B更新的数据,然后B回滚操作,那么A读取到的数据是脏数据 2、不可重复读:事务 A 多次读取同一数据,事务 B 在事务A多次读取的过程中,对数据作了更新并提交,导致事务A多次读取同一数据时,结果 不一致。 3、幻读:系统管理员A将数据库中所有学生的成绩从 阅读全文
posted @ 2020-03-31 11:44 b̶i̶n̶g̶.̶ 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 一、中间件实例 /// <summary> /// 请求日志中间件 /// </summary> public class RequestLogMiddleWare { private static readonly object o = new object(); private readonly 阅读全文
posted @ 2020-03-26 10:49 b̶i̶n̶g̶.̶ 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 原文:https://www.cnblogs.com/Leo_wl/p/7508650.html 阅读全文
posted @ 2020-03-25 16:31 b̶i̶n̶g̶.̶ 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 在项目根目录下打开执行 1.增加迁移 > dotnet ef migrations add 名字 2.删除最近一次的迁移 > dotnet ef migrations remove 3.更新数据库 >dotnet ef database update 4.生成脚本 >dotnet ef migrat 阅读全文
posted @ 2020-03-14 21:04 b̶i̶n̶g̶.̶ 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 解决办法: 打开终端,执行以下命名: dotnet tool update --global dotnet-ef 阅读全文
posted @ 2020-03-14 20:57 b̶i̶n̶g̶.̶ 阅读(154) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 40 下一页