Helllo,
I have a database context that looks like this:
public class DataContext : OdbcSqlAnywhereDataContext
{
public DataContext (string connectionString)
: this(new OdbcSqlAnywhereDataContextOptions<DataContext>(connectionString))
{
}
public DataContext(IDataContextOptions<DataContext> options)
: base(options)
{
}
public DataContext(IDataContextOptions options)
: base(options)
{
}
But when i use the SqlQueryBuilder, this database type is set to SqlServer while i'm using a SqlAnywhere
Is there a way to manually set this database type to SqlAnywhere?
Kind Regards,
Aaron D'Hooghe