-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🎨 Blog.Core 常见问题总结,非BUG #148
Comments
🎵 2、使用Oracle作为持久化数据库1、我正在使用的连接字符串格式: |
🎄3、使用MySql作为持久化数据库MySql版本:5.7+我正在使用的连接字符串格式: |
✨4、大量使用数据的时候,建议使用Serilog可以使用项目自写的Helper,也可以使用Serilog,
|
使用postgresql12的时候,nvarchar类型不支持。 |
在使用VS2022作为IDE时,使用T4模板生成代码,在引用:EnvDTE 依赖时,程序集Microsoft.VisualStudio.ProjectSystem.VS.Implementation, Version=17.0.0.0会导致错误,会提示:程序集“Microsoft.VisualStudio.ProjectSystem.VS.Implementation, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a”中的类型“Microsoft.VisualStudio.ProjectSystem.VS.Implementation.Package.Automation.OAProjectItem”未标记为可序列化 处理方案: 修改为:EnvDTE.DTE dte = (EnvDTE.DTE)hostServiceProvider.GetCOMService(typeof(EnvDTE.DTE)); |
mysql 数据库不能是8.0 否则生成数据库的时候报错, 换成5.7就好了 |
请问还有更好的解决方案吗? |
按照你说的成功了,真开心。 |
前端考虑下要不要换成Blazor😂 |
⛳ 1、有任何问题,请先自行更新最新代码调试。
然后再提
issue
。🎈1.1、使用SqlServer作为持久化数据库
注意使用的数据库,要是新版的(SqlServer2012及以上),比如SqlServer2008就不太友好支持,也能用,或者说特定功能不太支持,比如事务,或者并发的时候出现错误。
The text was updated successfully, but these errors were encountered: