
visual studio汇总
铭毅雨
这个作者很懒,什么都没留下…
展开
-
visual studio 2017添加数据源(mysql)报 "missing server and user in credentials" 或报 "给定关键字不在字典"
直接添加missing server and user in credentials强制新建连接解决方案:回头继续连接发现没了,也不报错了原创 2018-01-22 10:44:02 · 2470 阅读 · 2 评论 -
LINQ to Entities 不识别方法“System.DateTime Parse(System.String)”,因此该方法无法转换为存储表达式。
问题的代码是:return GetAll().Where(p => DateTime.Parse(p.F_YearMonth) <= _lastTimeCloseAccount_Date).ToList(); 解决的代码是:return GetAll().Where(p => SqlFunctions.DateAdd("day", 0, p.F_YearMon...原创 2018-08-10 18:03:22 · 3520 阅读 · 1 评论 -
Visual Studio 2017调试的时候很卡
问题描述: 最近调试完,在粘贴或添加注释都会卡卡到能看见这个提示框。以上问题未验证是否解决。今天调试时候,每次点F10就卡2秒,然后才进行下一步。点停止调试,需要不知道几分钟(估计有10几分钟),才结束。电脑配置就不说了,公司给配的近2W,应该不至于卡成这样。网上找了很多都不行,最后看见说去掉断点试试。于是抱着最后希望试试,牛了,果然顺多了。因为之前也...原创 2018-10-12 17:54:16 · 11756 阅读 · 2 评论