Raven.Studio.Models.IndexesModel.GetIndexGroup C# (CSharp) Method

GetIndexGroup() private method

private GetIndexGroup ( Raven.Abstractions.Data.IndexStats index ) : string
index Raven.Abstractions.Data.IndexStats
return string
		private string GetIndexGroup(IndexStats index)
		{
			if (index.ForEntityName.Count == 1)
				return index.ForEntityName.First();
			return "Others";
		}