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

Filtering for views schema

Open pajej-dev opened this issue 5 years ago • 0 comments

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.

pajej-dev avatar Mar 31 '20 10:03 pajej-dev