Kaynağa Gözat

fix bug of connection driver.

master
Savorboard 7 yıl önce
ebeveyn
işleme
778c3529b3
1 değiştirilmiş dosya ile 1 ekleme ve 2 silme
  1. +1
    -2
      src/DotNetCore.CAP.PostgreSql/PostgreSqlStorage.cs

+ 1
- 2
src/DotNetCore.CAP.PostgreSql/PostgreSqlStorage.cs Dosyayı Görüntüle

@@ -1,6 +1,5 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Threading;
using System.Threading.Tasks;
using Dapper;
@@ -62,7 +61,7 @@ namespace DotNetCore.CAP.PostgreSql

internal IDbConnection CreateAndOpenConnection()
{
var connection = _existingConnection ?? new SqlConnection(_options.ConnectionString);
var connection = _existingConnection ?? new NpgsqlConnection(_options.ConnectionString);

if (connection.State == ConnectionState.Closed)
{


Yükleniyor…
İptal
Kaydet