MiningModel.Collation Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the collation used by the MiningModel object.

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

Syntax

[TypeConverterAttribute("Microsoft.AnalysisServices.Design.CollationTypeConverter, Microsoft.AnalysisServices.Design")]
[EditorAttribute("Microsoft.AnalysisServices.Design.CollationPropertyTypeEditor, Microsoft.AnalysisServices.Design", 
    typeof(UITypeEditor))]
[XmlElementAttribute(IsNullable = false)]
public string Collation { get; set; }
public:
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.CollationTypeConverter, Microsoft.AnalysisServices.Design")]
[EditorAttribute("Microsoft.AnalysisServices.Design.CollationPropertyTypeEditor, Microsoft.AnalysisServices.Design", 
    (UITypeEditor^::typeid))]
[XmlElementAttribute(IsNullable = false)]
property String^ Collation {
    String^ get();
    void set(String^ value);
}
[<TypeConverterAttribute("Microsoft.AnalysisServices.Design.CollationTypeConverter, Microsoft.AnalysisServices.Design")>]
[<EditorAttribute("Microsoft.AnalysisServices.Design.CollationPropertyTypeEditor, Microsoft.AnalysisServices.Design",
    typeof(UITypeEditor))>]
[<XmlElementAttribute(IsNullable = false)>]
member Collation : string with get, set
<TypeConverterAttribute("Microsoft.AnalysisServices.Design.CollationTypeConverter, Microsoft.AnalysisServices.Design")>
<EditorAttribute("Microsoft.AnalysisServices.Design.CollationPropertyTypeEditor, Microsoft.AnalysisServices.Design",
    GetType(UITypeEditor))>
<XmlElementAttribute(IsNullable := False)>
Public Property Collation As String

Property Value

Type: System.String

The collation used by the MiningModel object.

Remarks

The Collation string consists of the locale identifier (LCID) and the comparison flag, separated by an underscore character. For example, Latin1_General_CI_AS is an acceptable string.

See Also

MiningModel Class
Microsoft.AnalysisServices Namespace

Return to top