Mimer Provider Manager

Configuration file - SQL Filter section

An SQL filter tag defines how an SQL Filter is accessed. The section is read by the Mimer Provider Manager to define mappings to each supported SQL Filter. There is one <sqlFilter> tag for each supported SQL Filter.

<MimerProviderManager>
    <sqlFilters>
        <sqlFilter sqlFilterName="ParameterMarkers"
                   factoryClass="MpmSqlFilterParameterMarkers"
                   factoryNamespace="Mimer.Mpm.Data.SqlFilterParameterMarkers"
                   factoryAssembly="Mimer.Mpm.Data.SqlFilterParameterMarkers" />
    </sqlFilters>
</MimerProviderManager>

where:

sqlFilterName
The name used to refer to an SQL Filter.
factoryClass
The factory is used to create new instances of the SQL Filter. This is the class name of the factory class.
factoryNamespace
The namespace used by the factory class.
factoryAssembly
The assembly that holds the factory class. You can specify a fully qualified name here including version, culture, and public key token. For example: "Mimer.Mpm.Data.SqlFilterParameterMarkers, Version=1.1.3.1, Culture= neutral, PublicKeyToken= 90474c83ee7ec777"

See Also

Configuration file overview | Plugin section | Data Source section