EntityFramework-Reverse-POCO-Code-First-Generator
EntityFramework-Reverse-POCO-Code-First-Generator copied to clipboard
Do the table and stored procedure filters work for schema?
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.