EntityStoreSchemaFilterEntry Constructors

Definition

Initializes a new instance of the EntityStoreSchemaFilterEntry class.

Overloads

EntityStoreSchemaFilterEntry(String, String, String)

Initializes a new instance of the EntityStoreSchemaFilterEntry class with the specified catalog, schema, and name filters.

EntityStoreSchemaFilterEntry(String, String, String, EntityStoreSchemaFilterObjectTypes, EntityStoreSchemaFilterEffect)

Initializes a new instance of the EntityStoreSchemaFilterEntry class the specified catalog, schema, name, and type filters, and filter effect setting.

EntityStoreSchemaFilterEntry(String, String, String)

Initializes a new instance of the EntityStoreSchemaFilterEntry class with the specified catalog, schema, and name filters.

public:
 EntityStoreSchemaFilterEntry(System::String ^ catalog, System::String ^ schema, System::String ^ name);
public EntityStoreSchemaFilterEntry (string catalog, string schema, string name);
new System.Data.Entity.Design.EntityStoreSchemaFilterEntry : string * string * string -> System.Data.Entity.Design.EntityStoreSchemaFilterEntry
Public Sub New (catalog As String, schema As String, name As String)

Parameters

catalog
String

The pattern to use to select the appropriate catalog.

schema
String

The pattern to use to select the appropriate schema or null to not limit by schema.

name
String

The pattern to use to select the appropriate name or null to not limit by name.

Applies to

EntityStoreSchemaFilterEntry(String, String, String, EntityStoreSchemaFilterObjectTypes, EntityStoreSchemaFilterEffect)

Initializes a new instance of the EntityStoreSchemaFilterEntry class the specified catalog, schema, name, and type filters, and filter effect setting.

public:
 EntityStoreSchemaFilterEntry(System::String ^ catalog, System::String ^ schema, System::String ^ name, System::Data::Entity::Design::EntityStoreSchemaFilterObjectTypes types, System::Data::Entity::Design::EntityStoreSchemaFilterEffect effect);
public EntityStoreSchemaFilterEntry (string catalog, string schema, string name, System.Data.Entity.Design.EntityStoreSchemaFilterObjectTypes types, System.Data.Entity.Design.EntityStoreSchemaFilterEffect effect);
new System.Data.Entity.Design.EntityStoreSchemaFilterEntry : string * string * string * System.Data.Entity.Design.EntityStoreSchemaFilterObjectTypes * System.Data.Entity.Design.EntityStoreSchemaFilterEffect -> System.Data.Entity.Design.EntityStoreSchemaFilterEntry
Public Sub New (catalog As String, schema As String, name As String, types As EntityStoreSchemaFilterObjectTypes, effect As EntityStoreSchemaFilterEffect)

Parameters

catalog
String

The pattern to use to select the appropriate catalog or null to not limit by catalog.

schema
String

The pattern to use to select the appropriate schema or null to not limit by schema.

name
String

The pattern to use to select the appropriate name or null to not limit by name.

types
EntityStoreSchemaFilterObjectTypes

The type of objects to apply this filter to.

effect
EntityStoreSchemaFilterEffect

An EntityStoreSchemaFilterEffect value indicating whether to allow or exclude entries that match the specified filters.

Applies to