Skip to content

Different stored procedures depending on database schema #1286

Answered by Mimetis
maprado-inetum asked this question in Q&A
Discussion options

You must be logged in to vote

that's incorrect:

 string tableName = $"js.OnDemandJobs";

// Filters
SetupFilter onDemandJobsFilter = new(tableName, "js");

Should be :

 string tableName = $"js.OnDemandJobs";

// Filters
SetupFilter onDemandJobsFilter = new("OnDemandJobs", "js");

Or even

string tableName = $"OnDemandJobs";
string schemaName = $"js";

// Filters
SetupFilter onDemandJobsFilter = new(tableName, schemaName);

Replies: 1 comment 6 replies

Comment options

You must be logged in to vote
6 replies
@maprado-inetum
Comment options

@Mimetis
Comment options

@maprado-inetum
Comment options

@Mimetis
Comment options

Answer selected by maprado-inetum
@maprado-inetum
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants