摘要: 部署第二个neo4j时,报错如下: ERROR Failed to start Neo4j on dbms.connector.http.listen_address, a socket address. If missing port or hostname it is acquired from 阅读全文
posted @ 2022-02-21 17:13 Cody& 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 按照文档设置启用了压缩,https://docs.microsoft.com/zh-cn/aspnet/core/blazor/host-and-deploy/webassembly?view=aspnetcore-6.0 ,但还是加载.dll文件(如下图),加载资源大小跟未压缩一样 解决方法: 需 阅读全文
posted @ 2021-12-26 10:43 Cody& 阅读(332) 评论(0) 推荐(1) 编辑
摘要: 调试看出在执行dotnet.6.0.0.fof53xxcmn.js时出现ReferenceError: Cant find variable: globalThis错误 加入下面代码即可 <script> !function(t){function e(){var e=this||self;e.gl 阅读全文
posted @ 2021-12-23 17:06 Cody& 阅读(554) 评论(0) 推荐(0) 编辑
摘要: 报错详细信息如下: System.InvalidOperationException: Property 'JsonResult.SerializerSettings' must be an instance of type 'System.Text.Json.JsonSerializerOptio 阅读全文
posted @ 2021-02-03 10:38 Cody& 阅读(1226) 评论(0) 推荐(0) 编辑
摘要: 1、 “HttpContent”未包含“ReadAsAsync”的定义,并且找不到可接受第一个“HttpContent”类型参数的可访问扩展方法“ReadAsAsync”(是否缺少 using 指令或程序集引用?) 方法:引用Microsoft.AspNet.WebApi.Client 2、 “IC 阅读全文
posted @ 2021-01-28 15:51 Cody& 阅读(463) 评论(0) 推荐(0) 编辑
摘要: 1、将.csproj文件 <TargetFramework>net5.0</TargetFramework> 2、连接oracle,open时报错:The type initializer for 'OracleInternal.ServiceObjects.OracleConnectionImpl 阅读全文
posted @ 2021-01-20 14:10 Cody& 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 在做单元测试的时候碰到以下报错: The instance of entity type 'XXX' cannot be tracked because another instance with the same key value for {'XX'} is already being trac 阅读全文
posted @ 2020-12-23 16:32 Cody& 阅读(4494) 评论(0) 推荐(1) 编辑
该文被密码保护。 阅读全文
posted @ 2020-12-22 17:04 Cody& 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 首先要引用以下包 新建DatabaseType枚举 public enum DatabaseType { SQLServer, Oracle, PostgreSQL } EF Core 1、新建IDbContextFactory接口 public interface IDbContextFactor 阅读全文
posted @ 2020-10-08 17:02 Cody& 阅读(1587) 评论(0) 推荐(1) 编辑
摘要: 1、引用以下包 2、在Program.cs中修改如下: public static void Main(string[] args) { Log.Logger = new LoggerConfiguration() .MinimumLevel.Error() .MinimumLevel.Overri 阅读全文
posted @ 2020-10-08 16:22 Cody& 阅读(212) 评论(0) 推荐(0) 编辑