Skip to content

Commit

Permalink
fix connection
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Oct 8, 2017
1 parent 7855772 commit 8dd87e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public Task Configure(string endpointName, EndpointConfiguration configuration,
return Task.FromResult(0);
}
var tablePrefix = TableNameCleaner.Clean(endpointName);
endpointHelper = new ConfigureEndpointHelper(configuration, tablePrefix, MsSqlConnectionBuilder.Build, BuildSqlDialect.PostgreSql, FilterTableExists);
endpointHelper = new ConfigureEndpointHelper(configuration, tablePrefix, PostgreSqlConnectionBuilder.Build, BuildSqlDialect.PostgreSql, FilterTableExists);
var persistence = configuration.UsePersistence<SqlPersistence>();
persistence.ConnectionBuilder(PostgreSqlConnectionBuilder.Build);
persistence.SqlDialect<SqlDialect.PostgreSql>();
Expand Down

0 comments on commit 8dd87e2

Please sign in to comment.