combit List & Label 29 - .NET Help
combit.Reporting.DataProviders Namespace / DbConnectionDataProvider Class / SupportsAdvancedFiltering Property


In This Topic
    SupportsAdvancedFiltering Property (DbConnectionDataProvider)
    In This Topic

    Gets or sets if advanced filtering can be supported. If set to true, the default handling will be used to translate filter expressions to database queries. Depending on the database system, you may need to adapt the queries that are generated. Override the OnTranslateFilterSyntax in order to customize the queries. If you're working with one of the DbConnectionDataProvider descendants, you can also use the TranslateFilterSyntax Event for a fine tuning. If you're not sure what to do you should leave this property at its default value or - if you're inheriting from DbConnectionDataProvider - implement a getter that always returns false.

    Syntax
    'Declaration
     
    
    Public MustOverride Property SupportsAdvancedFiltering As Boolean
    public abstract bool SupportsAdvancedFiltering {get; set;}
    public:
    abstract property bool SupportsAdvancedFiltering {
       bool get();
       void set (    bool value);
    }
    Requirements

    Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
    .NET: .NET Framework 4.8, .NET 6, .NET 7, .NET 8

    See Also