We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have tables schema "Hangfire". Example, "HangFire.Job". I'm unable to filter these tables using the --dataTablesPattern option.
Here is what i've tried,
--dataTablesExcludePattern="(Job)" This works to filter out Job table. Program seems to be ignoring the schema portion of the table name. eg. dbo
Is there a way to specifically exclude ALL tables with a particular schema? --dataTablesExcludePattern="(Hangfire)"
The text was updated successfully, but these errors were encountered:
dataTablesPattern is expecting a regex expression; --dataTablesPattern "^(?!ignoreMe|ignoreMeToo|ignoreAnotherOne$).*"
--dataTablesPattern "^(?!ignoreMe|ignoreMeToo|ignoreAnotherOne$).*"
Not sure that it handles the schema though.
Sorry, something went wrong.
Only just saw this issue now, but my PR to specify schemas should help with this - #193
Successfully merging a pull request may close this issue.
I have tables schema "Hangfire". Example, "HangFire.Job".
I'm unable to filter these tables using the --dataTablesPattern option.
Here is what i've tried,
--dataTablesExcludePattern="(Job)"
This works to filter out Job table. Program seems to be ignoring the schema portion of the table name. eg. dbo
Is there a way to specifically exclude ALL tables with a particular schema?
--dataTablesExcludePattern="(Hangfire)"
The text was updated successfully, but these errors were encountered: