摘要:
SQL Server数据库判断记录是否存在,要不是语句不够简洁,要不就是性能有很大问题,简直就是忍无可忍! 如果只是判断记录是否存在,而不需要获取实际表中的记录数,推荐做法: IF EXISTS (SELECT 1 FROM dbo.TableName) BEGIN PRINT '1'; --存在记 阅读全文
摘要:
List集合是非线程安全的,所以我们这里了解下安全集合ConcurrentBag。 控制台测试程序: using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.D 阅读全文
摘要:
asp.net core 3.1 MVC/WebApi JSON 全局配置 System.Text.Json(default) startup配置代码如下: using System.Text.Encodings.Web; using System.Text.Json; using System.T 阅读全文
摘要:
可能会遇到的问题: Both Entity Framework 6.x and Entity Framework Core commands are installed. The Entity Framework 6 version is executing. You can fully quali 阅读全文
摘要:
如果你使用命令: PM> add-migration Inital 提示如下信息时: The EF Core tools version '2.1.1-rtm-30846' is older than that of the runtime '2.1.4-rtm-31024' 解决方法大致一下几种: 阅读全文