EntityFramework-Reverse-POCO-Code-First-Generator icon indicating copy to clipboard operation
EntityFramework-Reverse-POCO-Code-First-Generator copied to clipboard

Do the table and stored procedure filters work for schema?

Open agentKnipe opened this issue 5 years ago • 0 comments

if I wanted a specific table, and stored procedure from an app schema, should this work? I get the table, but the stored procedures arent coming through.

FilterSettings.TableFilters.Add(new RegexIncludeFilter("tblImportedFileSummary"));
FilterSettings.StoredProcedureFilters.Add(new RegexIncludeFilter("^[Aa]pp.*"));

I have also tried to use a schema filter for the schema I want and then to include the specific table I want, but then the table doesnt come in, but I get all my stored procedures.

agentKnipe avatar Nov 12 '20 20:11 agentKnipe