处理SqlException: Failed to generate SSPI context.
昨天在调试ABP架构时,需要配置数据库连接地址ConnectionStrings,然后疯狂报错,内容如下: Failed to generate SSPI context.
各种找资料都没有找到,最后在https://stackoverflow.com/questions/49031082/c-sharp-system-data-sqlclient-sqlexception-failed-to-generate-sspi-context 找到了,处理如下:
```csharp
"Server=***; Database=HiNetCorePlatformDb; Trusted_Connection=False;User ID=**;Password=*****;"
将Trusted_Connection设定为false 就可以了