MiningModelColumn.Filter Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the filter expression for the mining model column.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)

Syntax

[DefaultValueAttribute(null)]
[EditorAttribute("Microsoft.AnalysisServices.Design.FilterPropertyTypeEditor, Microsoft.AnalysisServices.Design", 
    typeof(UITypeEditor))]
[TypeConverterAttribute(typeof(StringConverter))]
[XmlElementAttribute(Namespace = "https://schemas.microsoft.com/analysisservices/2008/engine/100/100")]
public string Filter { get; set; }
public:
[DefaultValueAttribute(null)]
[EditorAttribute("Microsoft.AnalysisServices.Design.FilterPropertyTypeEditor, Microsoft.AnalysisServices.Design", 
    (UITypeEditor^::typeid))]
[TypeConverterAttribute((StringConverter^::typeid))]
[XmlElementAttribute(Namespace = "https://schemas.microsoft.com/analysisservices/2008/engine/100/100")]
property String^ Filter {
    String^ get();
    void set(String^ value);
}
[<DefaultValueAttribute(null)>]
[<EditorAttribute("Microsoft.AnalysisServices.Design.FilterPropertyTypeEditor, Microsoft.AnalysisServices.Design",
    typeof(UITypeEditor))>]
[<TypeConverterAttribute(typeof(StringConverter))>]
[<XmlElementAttribute(Namespace = "https://schemas.microsoft.com/analysisservices/2008/engine/100/100")>]
member Filter : string with get, set
<DefaultValueAttribute(Nothing)>
<EditorAttribute("Microsoft.AnalysisServices.Design.FilterPropertyTypeEditor, Microsoft.AnalysisServices.Design",
    GetType(UITypeEditor))>
<TypeConverterAttribute(GetType(StringConverter))>
<XmlElementAttribute(Namespace := "https://schemas.microsoft.com/analysisservices/2008/engine/100/100")>
Public Property Filter As String

Property Value

Type: System.String

A string containing a DMX filter expression.

Remarks

The Filter property for the mining model applies to the case table. The Filter property applies to the nested table in a mining column .

See Also

MiningModelColumn Class
Microsoft.AnalysisServices Namespace

Return to top