我具有从中创建dbcontext的NpgSql连接。当连接临时中断时,我会收到很多连接错误。
现在我在Startup.cs中有此服务配置
this.setState({
itemId: id
})
在MSSQL Connection中是解决方案。我正在寻找与Postgres类似的产品。
services.AddDbContext<ContactsContext> (options =>
options.UseNpgsql (Configuration["DataAccessPostgreSqlProvider:ConnectionString"]),
ServiceLifetime.Transient);
我必须保护连接中断。