Describe the request
Extended support of RepoDB to Snowflake for Enterprise enabled applications.
Describe your wish
Follow the convention and behaviors of other packs.
using RepoDb;
using Snowflake.Data.Client;
var connectionString =
"account=your_account;" +
"user=REPODB_USER;" +
"password=Password123!;" +
"db=REPODB;" +
"schema=PUBLIC;" +
"warehouse=COMPUTE_WH;" +
"role=SYSADMIN;";
using var connection = new SnowflakeDbConnection
{
ConnectionString = 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 Snowflake.Data.Client default ADO provider.
Describe the request
Extended support of RepoDB to Snowflake for Enterprise enabled applications.
Describe your wish
Follow the convention and behaviors of other packs.
Additional Context
The library should use the
Snowflake.Data.Clientdefault ADO provider.