Esempio n. 1
0
 public override String ToString()
 {
     return("QueryPlanIndexItem{" +
            "unique=" + IsUnique +
            ", indexProps=" + IndexProps.Render() +
            ", rangeProps=" + RangeProps.Render() +
            ", optIndexCoercionTypes=" + OptIndexCoercionTypes.Render() +
            ", optRangeCoercionTypes=" + OptRangeCoercionTypes.Render() +
            '}');
 }
Esempio n. 2
0
        public string GetIndexName(string sitecoreIndexName, OperationalType type)
        {
            IndexProps document = GetDocument(sitecoreIndexName, type);

            if (document == null)
            {
                return(string.Empty);
            }
            return(document.ServiceName);
        }