BExIS.Ddm.Model.SearchAttribute.GetAggregationType C# (CSharp) Méthode

GetAggregationType() public static méthode

public static GetAggregationType ( string value ) : AggregationType
value string
Résultat AggregationType
        public static AggregationType GetAggregationType(string value)
        {
            switch (value)
            {
                case "distinct": return AggregationType.Distinct;
                case "union": return AggregationType.Union;
                default: return AggregationType.Distinct;
            }
        }