MiningModel.Algorithm Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the algorithm associated with the MiningModel, which can be supplied by Microsoft or can be your own custom algorithm.

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

Syntax

[XmlElementAttribute(IsNullable = false)]
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.MiningModelAlgorithmTypeConverter, Microsoft.AnalysisServices.Design")]
public string Algorithm { get; set; }
public:
[XmlElementAttribute(IsNullable = false)]
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.MiningModelAlgorithmTypeConverter, Microsoft.AnalysisServices.Design")]
property String^ Algorithm {
    String^ get();
    void set(String^ value);
}
[<XmlElementAttribute(IsNullable = false)>]
[<TypeConverterAttribute("Microsoft.AnalysisServices.Design.MiningModelAlgorithmTypeConverter, Microsoft.AnalysisServices.Design")>]
member Algorithm : string with get, set
<XmlElementAttribute(IsNullable := False)>
<TypeConverterAttribute("Microsoft.AnalysisServices.Design.MiningModelAlgorithmTypeConverter, Microsoft.AnalysisServices.Design")>
Public Property Algorithm As String

Property Value

Type: System.String

The algorithm assigned to the MiningModel.

See Also

MiningModel Class
Microsoft.AnalysisServices Namespace

Return to top