SqlKata provide an easy way to execute your queries, by using the famous package Dapper.
In order to execute the queries, you need to install the needed Drivers for each Database Provider.
For Sql Server install System.Data.SqlClient package
dotnet add package System.Data.SqlClient
For Postgre Sql install Npgsql package
dotnet add package Npgsql
For MySql install MySql.Data package
dotnet add package MySql.Data