09 2021 档案
摘要:1.虽然数据库中的License定义为int,但如果如下写法,会出现错误 declare @licenseId int select @licenseId=LicenseId from License where Name='ABC' print 'LicenseId:'+@licenseId 错误
阅读全文
摘要:解决方案: 查看命名空间,把命名空间 using System.Data.Entity; 改为如下: using Microsoft.EntityFrameworkCore;
阅读全文
摘要:解决方案: System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
阅读全文