摘要:
MySQLTransactionRollbackException: Deadlock found when trying to get lock; try restarting transaction 业务逻辑中一次提交触发多个ajax请求,但都需要请求修改/插入同一张表,这样的请求容易发生死锁, 阅读全文
摘要:
Team Foundation Server(TFS)是微软推出的团队项目管理工具,主要包含代码版本控制,工作任务分派,持续集成,测试等一系列管理任务。由于团队之前人数较少,使用的仅有代码版本控制(SVN),而.NET项目各种生成包若默认都提交,则用户间很容易产生冲突,而且基本不能Merge,若默认... 阅读全文
摘要:
遇到报错如下:Model compatibility cannot be checked because the database does not contain model metadata. Ensure that IncludeMetadataConvention has been added to the DbModelBuilder conventions.建议:1.删除原有数据库2.在Application_Start里面应该为以下代码if (!Database.Exists("connString")) { Database.... 阅读全文