Describe the request
Extended support of RepoDB to Vertica for Enterprise enabled applications.
Describe your wish
Follow the convention and behaviors of other packs.
using RepoDb;
using Vertica.Data.VerticaClient;
var connectionString =
"Host=localhost;" +
"Port=5433;" +
"Database=VMart;" +
"User=dbadmin;" +
"Password=Password123!;";
using var connection = new VerticaConnection(connectionString);
var customers = connection.Query<Customer>(
new { IsActive = true });
foreach (var customer in customers)
{
Console.WriteLine($"{customer.Id}: {customer.Name}");
}
Additional Context
The library should use the Vertica.Data.VerticaClient default ADO provider.
Describe the request
Extended support of RepoDB to Vertica for Enterprise enabled applications.
Describe your wish
Follow the convention and behaviors of other packs.
Additional Context
The library should use the
Vertica.Data.VerticaClientdefault ADO provider.