Click or drag to resize
ITop100TGetTop100 Method

[This is preliminary documentation and is subject to change.]

Retrieves the first 100 matches of the search string. For each string, a maximum of 100 ids are returned. Please see the interface for the manager for documentation on supported properties and additional information

Namespace: Netadmin.Management.Common.Core
Assembly: Netadmin.Management.Interfaces (in Netadmin.Management.Interfaces.dll) Version: release/9.0@131b654fe7332b0776120c2b44d96c6cac5ac9a2
Syntax
IReadOnlyDictionary<string, IEnumerable<long>> GetTop100(
	Expression<Func<T, string>> property,
	string rawSearchString
)

Parameters

property
Type: System.Linq.ExpressionsExpressionFuncT, String
An expression starting with T and ending in a string. Example dto => dto.Name
rawSearchString
Type: SystemString
The string for which to get matches

Return Value

Type: IReadOnlyDictionaryString, IEnumerableInt64
A case-insensitive dictionary with the result as key and its ids as value
Remarks
Note that if the dictionary value contains 100 entries, there is no guarantee that the id list contains all matches
See Also