/// <exception cref="NotSupportedException" /> /// <exception cref="InvalidOperationException" /> public IEnumerable <T> HavingMin <TProperty>(Expression <Func <T, TProperty> > property) { if (property == null) { throw new ArgumentNullException(nameof(property)); } IComparsionIndex <T> index = FindComparsionIndex(property.Body); return(index.HavingMin()); }