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