EntityFramework-Reverse-POCO-Code-First-Generator
EntityFramework-Reverse-POCO-Code-First-Generator copied to clipboard
Filtering for views schema
Hi. I have already made upgrade from v3.0.5 to v3.1.3. Unfortunetly There is a problem with expression which I use in filtering: "ViewSchemaExcludeFilter()".
All I want to achive is to use dbo. and mobile. scheme for tables BUT only dbo. for views. Is it possible in v3.1.3?
There is my working code in v3.0.5
FilterSettings.SchemaFilters.Add(new RegexIncludeFilter("^dbo$|^mobile$"));
FilterSettings.TableFilters.Add(new ViewSchemaExcludeFilter("^dbo$"));
How to filter out schema in views? I read filtering documentation but I Haven't found information about views.