Skip to main content
A newer version of this page is available. .

DBSetFilter(String, String, IEnumerable<EFParameter>) Constructor

Initializes a new instance of the DBSetFilter class with the specified settings.

Namespace: DevExpress.DataAccess.EntityFramework

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public DBSetFilter(
    string dbSetName,
    string filterString,
    IEnumerable<EFParameter> parameters
)

Parameters

Name Type Description
dbSetName String

A String value, identifying the DbSet. This value is assigned to the DBSetFilter.DBSetName property.

filterString String

A String value, specifying the filter string. This value is assigned to the DBSetFilter.FilterString property.

parameters IEnumerable<EFParameter>

A collection of EFParameter objects. This value is assigned to the DBSetFilter.Parameters property.

See Also